.title-section {
    font-weight: 800;
}

.fw-700 {
    font-weight: 700;
}

.fw-600 {
    font-weight: 600;
}
.fw-500 {
    font-weight: 500;
    font-size: 1.2rem;
}

.truncate-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Número de linhas máxima que o texto pode ter */
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.container-home {
    margin-left: 0;
    margin-right: 0;
    padding-left: 154px;
    padding-right: 154px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 colunas de largura igual */
    grid-template-rows: repeat(2, auto); /* 2 linhas automáticas */
    column-gap: 16px; /* Distância entre os cards (colunas) */
    row-gap: 22px; /* Distância entre as linhas (rows) */
    justify-items: center; /* Centraliza os cards dentro das células */
    width: 0px;
}

/* Mantém o restante do CSS igual */
.service-card {
    z-index: 50;
    display: flex;
    flex-direction: column;
    width: 200.69px;
    height: 210.68px;
    text-decoration: none;
    transition: transform 0.3s ease-in-out;
}

.service-card:hover {
    transform: scale(1.05);
}

.service-card-content {
    margin: 0;
    padding: 0;
    text-align: center;
    border: none !important;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease-in-out;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover .service-card-content {
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
}

.service-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    padding: 0;
}

.service-image {
    width: 60px;
    height: 60px;
    margin: 35px;
}

.grid-container {
    column-gap: 0px;
    row-gap: 0px;
    justify-items: left;
}

.service-title {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #3459ce;
    width: 100%;
    margin-bottom: 0;
}

.service_name {
    color: white;
    font-size: 16px;
    margin: 0;
    padding: 0.5rem;
    word-wrap: break-word;
}

.portal-link {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 16px;
}

.portal-link a {
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    text-align: center;
    padding: 20px 16px;
    color: white;
    font-weight: bold;
    text-decoration: none;
    border-radius: 12px;
}

.portal-educacao {
    background-color: #f94141;
}

.portal-cultura {
    background-color: #ffa41b;
}

.portal-saude {
    background-color: #2d87f0;
}

.servicos {
    background-color: #1c3961;
    padding-top: 10px;
    position: relative;
    width: 100%;
    height: auto; /* Mantém a proporção natural */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#details {
    z-index: 50;
}

#rectangle_1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 27%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
}
#rectangle_2 {
    position: absolute;
    top: 0;
    left: 15%;
    width: 27%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
#rectangle_3 {
    position: absolute;
    top: 0;
    left: 30%;
    width: 27%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.news-highlight .news-img {
    width: 100%;
    border-radius: 50px;
    padding: 20px;
}

.news-item {
    background-color: #a199995b;
    border-radius: 30px;
}

.news-list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 1rem;
    row-gap: 0;
    border-top: 1px solid #6c757d65;
    margin-top: -100px !important;
}

.news-list-item {
    height: 20rem;
    padding: 1rem;
    box-sizing: border-box;
    border-right: 1px solid #6c757d65;
}

/* Última coluna de cada linha */
.news-list-item:nth-of-type(4n) {
    border-right: none;
}

.news-list a {
    text-decoration: none;
    color: black;
    display: block;
    padding: 10px 0;
}

.news-list a:hover {
    color: red;
}

.carousel-img {
    width: 80%;
    height: auto;
    margin: 0 auto; /* centraliza */
    display: block;
}

.news-divider {
    grid-column: 1 / -1; /* ocupa toda a largura da grid */
    border: 0;
    border-top: 1px solid #6c757d65;
    margin: 0;
}

.notice-main-title {
    margin-top: 10px;
}

.notice-main-title h2 {
    display: -webkit-box; /* Necessário para o line-clamp funcionar */
    -webkit-line-clamp: 2; /* Limita a 2 linhas */
    -webkit-box-orient: vertical; /* Define a orientação do box */
    overflow: hidden; /* Esconde o conteúdo que ultrapassa */
    text-overflow: ellipsis; /* Adiciona os "..." no final do texto truncado */
}

.notice-main-description {
    padding-top: 30px !important;
}

.notice-main-description h2 {
    margin: 0px;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Limita a 2 linhas */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.notice-main-description p {
    font-size: 14px;
    color: #666;
}

.notice-secondary-description h2 {
    margin: 0px;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Limita a 2 linhas */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.notice-secondary-description p {
    margin-top: 5rem;
    font-size: 14px;
    color: #666;
}

.notice-secondary-description-second {
    margin: 0px !important;
}

.notice-main-category h2 {
    margin-top: 25px;
    font-size: 14px;
    color: #666;
}

.pagination {
    align-items: center;
    display: flex;
    justify-content: flex-end;
}

.pagination button.carousel-btn {
    background: #000;
    border: none;
    width: 20px;
    height: 20px;
    margin-top: 10px;
    border-bottom-left-radius: 10px !important;
    border-bottom-right-radius: 10px !important;
}

.pagination button.active {
    background: #333; /* Slightly lighter black for active state */
}

.pagination button:hover {
    background: #707070;
}

.pagination button.active {
    background: #333; /* Slightly lighter black for active state */
}

.pagination button:hover {
    background: #707070;
}

.pagination .carousel-control-prev {
    width: 70px;
    height: 60px;
}

.pagination .carousel-control-next {
    width: 70px;
    height: 60px;
}

#search_sec {
    position: relative; /* Define um contexto de posicionamento relativo */
}

#suggestions {
    position: absolute;
    top: 100%; /* Posiciona abaixo do input */
    left: 0; /* Alinha à esquerda do input */
    z-index: 1000;
    width: 100%; /* Mesma largura do input */
    background: white;
    border: 1px solid #ccc;
    display: none; /* Inicialmente oculto */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Adiciona sombra para melhorar a aparência */
}

.informes-item {
    background-color: #d9d9d9;
    border-radius: 20px;
    width: 100%;
    max-width: 344px;
    max-height: 398px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
    overflow: hidden;
    flex: 1 1 280px;
}

.informes-content {
    padding: 30px 30px 0 30px;
    flex-grow: 1;
}

.informes-content-footer {
    text-align: left;
}

.informes::-webkit-scrollbar {
    height: 8px;
    border-radius: 4px;
}

.informes::-webkit-scrollbar-track {
    background: transparent;
}

.informes::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 4px;
}

.informes-item::-webkit-scrollbar {
    background-color: transparent !important;
}

.photo-galery {
    width: 100%;
    display: flex; /* Layout flexbox para alinhar os itens horizontalmente */
    justify-content: space-between; /* Espaçamento uniforme entre as imagens */
    gap: 20px; /* Espaço entre as imagens */
    padding: 20px;
    box-sizing: border-box;
}

.photo {
    width: 391px;
    height: 398px;
    position: relative;
    overflow: hidden;
    width: calc(
        25% - 15px
    ); /* Cada imagem ocupa 25% da largura, menos o espaço entre elas */
    height: auto;
    margin: 0; /* Remove margens extras */
}

.photo img {
    width: 100%;
    height: 384px; /* Altura fixa para manter consistência */
    border-radius: 15px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.photo-link {
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Fundo semi-transparente */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 15px;
    backdrop-filter: blur(2px);
}

.photo-overlay:hover {
    transform: scale(1.05);
    opacity: 1;
    border-radius: 15px;
}

.flickr-content {
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 90px;
    padding-bottom: 90px;
}

.photo:hover img {
    transform: scale(1.05);
    filter: blur(2px); /* Efeito de desfoque */
}

.btn_galeria {
    background-color: #ffc107;
    width: 373px;
    height: 60px;
}

.btn_galeria:hover {
    background-color: #202020;
    color: #ffc107;
}

.btn_galeria:hover span {
    color: #ffc107;
}

.news-list-item h2 {
    font-weight: 400;
    height: 150px;
    font-size: 22px;
}

.badge-destaque {
    background-color: #3b3b45;
    color: #fff;
    border-radius: 0px 75px 75px 0px;
    font-weight: 800;
    width: 175px;
    padding: 3px 0px 3px 0px;
    text-align: center;
}

.img-pelotas {
    width: 100%;
    top: 400px;
    height: 400px;
}

.img-pelotas-left {
    position: absolute;
    top: 268px;
    left: 0;
    width: 153.51px;
    height: 182.25px;
}

.img-pelotas-right {
    position: absolute;
    top: 268px;
    right: 0;
    width: 153.51px;
    height: 182.25px;
    transform: scale(-1, 1);
}

.home-header {
    height: 330px;
    position: relative;
    overflow: hidden;
    margin-top: 150px;
}

.main-column {
    margin-right: 30px;
}

.notice-main-title {
    height: 60px !important;
}

.div-secretaria {
    width: 27.5% !important;
    margin-left: 20px;
}

.text-position {
    text-align: center !important;
}

.carousel-indicators {
    display: flex;
    justify-content: flex-end !important;
    margin-right: 50px !important;
}

.content-style {
    justify-content: end;
}

.news-button {
    height: 50px;
    width: 40%;
    border-radius: 30px;
    background-color: #36a5fd;
}

.news-p {
    margin-top: 35px;
    margin-bottom: 0;
    font-style: italic;
    padding-left: 3px;
    font-size: 14px;
}

.imgs-width {
    width: 33% !important;
}

.carousel-img2 {
    width: 80%;
    height: auto;
    margin: 0 auto; /* centraliza */
    display: block;
    padding-top: 1.5rem !important;
}

.text-position {
    text-align: left !important;
}

.services-width {
    width: 33.3333% !important;
}

.service-acess {
    color: white;
    width: 217px;
    height: 46px;
    font-family: Rawline;
    font-weight: 400;
    font-size: 33px;
}

.service-name {
    color: white;
    width: 362px;
    height: 102px;
    font-family: Rawline;
    font-weight: 800;
    font-size: 74.16px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.service-grid {
    width: 66.66666667% !important;
}

.service-button {
    border-radius: 30px;
    width: 364px;
    height: 60px;
}

.service-button-img {
    margin-bottom: 6px !important;
    margin-left: 15px;
}

.gallery {
    margin-bottom: 30px;
    margin-top: 100px;
}

.title-section2 {
    font-weight: 800;
    margin-top: 20px;
    margin-bottom: 4rem !important;
}

.portais {
    font-weight: 900;
    font-size: 18px;
}

@media (min-width: 1520px) {
    .img-desktop {
        width: 100% !important;
    }
}

@media (min-width: 4600px) and (max-width: 4810px) {
    .main-notice {
        padding: 0px 28px 0px 12px !important;
    }

    .title-section2 {
        margin-bottom: 0rem !important;
        margin-top: 3.5rem;
    }

    .informes .gap-3 {
        gap: 2rem !important;
        margin-left: 20px;
    }

    .informes-column .text-nowrap {
        font-size: 36px !important;
    }

    .informes-column p {
        font-size: 26px !important;
    }

    .div-main-news {
        width: 67% !important;
    }

    .informes-column {
        height: 500px !important;
        width: 28% !important;
    }

    .informes {
        height: 580px !important;
        width: 70% !important;
    }

    .informes-item {
        max-width: 690px;
        max-height: 500px;
    }

    .btn-size {
        margin-top: 70px !important;
    }

    .service-grid {
        width: 57% !important;
    }

    .service-card {
        width: 390px;
    }

    .div-secretaria {
        width: 18% !important;
        margin-left: 40px;
    }

    .title-section2 {
        margin-bottom: 0rem !important;
    }

    .carousel-item {
        height: 600px;
        width: 98.5% !important;
    }

    .news-highlight .news-img {
        width: 100%;
        border-radius: 50px;
        padding: 22px;
        height: 592px;
    }

    .carousel-img2 {
        width: 55%;
        margin-left: 76px;
        height: 560px;
    }

    .text-decoration-none .fw-500 {
        margin-top: 32px;
        font-size: 20px;
    }

    .news-list-item {
        height: 27rem;
        padding: 2rem;
    }

    .news-list-item h2 {
        font-size: 28px;
    }

    .text-decoration-none .fw-700 {
        font-size: 2.5rem;
    }

    .img-desktop .carousel-img2 {
        margin-bottom: 3rem;
    }

    .margin-tv {
        margin: 40px 0px;
        border-radius: 40px !important;
        height: 72px !important;
        padding: 8px !important;
    }

    #search_sec {
        font-size: 1.6rem !important;
    }

    .portal-link .text-position {
        padding: 20px !important;
    }

    .portais {
        font-size: 28px !important;
    }

    .portais-nome {
        font-size: 20px !important;
    }

    .fontsize {
        font-size: 40px !important;
    }

    .portal-link a {
        height: 180px;
    }

    .grid-container {
        width: 90% !important;
        margin-left: 90px;
    }

    .container-home {
        margin-left: 0;
        margin-right: 0;
        padding-left: 450px;
        padding-right: 154px;
    }

    .gallery {
        padding-right: 450px;
    }
}

@media (min-width: 4200px) and (max-width: 4400px) {
    .main-notice {
        padding: 0px 28px 0px 12px !important;
    }

    .title-section2 {
        margin-bottom: 0rem !important;
        margin-top: 3.5rem;
    }

    .informes .gap-3 {
        gap: 2rem !important;
        margin-left: 20px;
    }

    .informes-column .text-nowrap {
        font-size: 36px !important;
    }

    .informes-column p {
        font-size: 26px !important;
    }

    .div-main-news {
        width: 67% !important;
    }

    .informes-column {
        height: 500px !important;
        width: 28% !important;
    }

    .informes {
        height: 580px !important;
        width: 70% !important;
    }

    .informes-item {
        max-width: 690px;
        max-height: 500px;
    }

    .btn-size {
        margin-top: 70px !important;
    }

    .service-grid {
        width: 57% !important;
    }

    .service-card {
        width: 390px;
    }

    .div-secretaria {
        width: 18% !important;
        margin-left: 40px;
    }

    .title-section2 {
        margin-bottom: 0rem !important;
    }

    .carousel-item {
        height: 600px;
        width: 98.5% !important;
    }

    .news-highlight .news-img {
        width: 100%;
        border-radius: 50px;
        padding: 22px;
        height: 592px;
    }

    .carousel-img2 {
        width: 55%;
        margin-left: 76px;
        height: 560px;
    }

    .text-decoration-none .fw-500 {
        margin-top: 32px;
        font-size: 20px;
    }

    .news-list-item {
        height: 27rem;
        padding: 2rem;
    }

    .news-list-item h2 {
        font-size: 28px;
    }

    .text-decoration-none .fw-700 {
        font-size: 2.5rem;
    }

    .img-desktop .carousel-img2 {
        margin-bottom: 3rem;
    }

    .margin-tv {
        margin: 40px 0px;
        border-radius: 40px !important;
        height: 72px !important;
        padding: 8px !important;
    }

    #search_sec {
        font-size: 1.6rem !important;
    }

    .portal-link .text-position {
        padding: 20px !important;
    }

    .portais {
        font-size: 28px !important;
    }

    .portais-nome {
        font-size: 20px !important;
    }

    .fontsize {
        font-size: 40px !important;
    }

    .portal-link a {
        height: 180px;
    }

    .grid-container {
        width: 90% !important;
        margin-left: 90px;
    }

    .container-home {
        margin-left: 0;
        margin-right: 0;
        padding-left: 450px;
        padding-right: 154px;
    }

    .gallery {
        padding-right: 450px;
    }
}

@media (min-width: 3601px) and (max-width: 3900px) {
    .main-notice {
        padding: 0px 28px 0px 12px !important;
    }

    .title-section2 {
        margin-bottom: 0rem !important;
        margin-top: 3.5rem;
    }

    .informes .gap-3 {
        gap: 2rem !important;
        margin-left: 20px;
    }

    .informes-column .text-nowrap {
        font-size: 36px !important;
    }

    .informes-column p {
        font-size: 26px !important;
    }

    .div-main-news {
        width: 67% !important;
    }

    .informes-column {
        height: 500px !important;
        width: 28% !important;
    }

    .informes {
        height: 580px !important;
        width: 70% !important;
    }

    .informes-item {
        max-width: 604px;
        max-height: 500px;
    }

    .btn-size {
        margin-top: 70px !important;
    }

    .service-grid {
        width: 57% !important;
    }

    .service-card {
        width: 350px;
    }

    .div-secretaria {
        width: 18% !important;
        margin-left: 40px;
    }

    .title-section2 {
        margin-bottom: 0rem !important;
    }

    .carousel-item {
        height: 600px;
        width: 98.5% !important;
    }

    .news-highlight .news-img {
        width: 100%;
        border-radius: 50px;
        padding: 22px;
        height: 592px;
    }

    .carousel-img2 {
        width: 55%;
        margin-left: 76px;
        height: 560px;
    }

    .text-decoration-none .fw-500 {
        margin-top: 32px;
        font-size: 20px;
    }

    .news-list-item {
        height: 27rem;
        padding: 2rem;
    }

    .news-list-item h2 {
        font-size: 28px;
    }

    .text-decoration-none .fw-700 {
        font-size: 2.5rem;
    }

    .img-desktop .carousel-img2 {
        margin-bottom: 3rem;
    }

    .margin-tv {
        margin: 40px 0px;
        border-radius: 40px !important;
        height: 72px !important;
        padding: 8px !important;
    }

    #search_sec {
        font-size: 1.6rem !important;
    }

    .portal-link .text-position {
        padding: 20px !important;
    }

    .portais {
        font-size: 28px !important;
    }

    .portais-nome {
        font-size: 20px !important;
    }

    .fontsize {
        font-size: 40px !important;
    }

    .portal-link a {
        height: 180px;
    }

    .grid-container {
        width: 88% !important;
        margin-left: 90px;
    }

    .container-home {
        margin-left: 0;
        margin-right: 0;
        padding-left: 450px;
        padding-right: 154px;
    }

    .gallery {
        padding-right: 450px;
    }
}

@media (min-width: 3301px) and (max-width: 3600px) {
    .main-notice {
        padding: 0px 28px 0px 12px !important;
    }

    .title-section2 {
        margin-bottom: 0rem !important;
        margin-top: 3.5rem;
    }

    .informes .gap-3 {
        gap: 2rem !important;
        margin-left: 20px;
    }

    .informes-column .text-nowrap {
        font-size: 36px !important;
    }

    .informes-column p {
        font-size: 26px !important;
    }

    .div-main-news {
        width: 67% !important;
    }

    .informes-column {
        height: 500px !important;
        width: 28% !important;
    }

    .informes {
        height: 580px !important;
        width: 70% !important;
    }

    .informes-item {
        max-width: 560px;
        max-height: 500px;
    }

    .btn-size {
        margin-top: 70px !important;
    }

    .service-grid {
        width: 57% !important;
    }

    .service-card {
        width: 336px;
    }

    .div-secretaria {
        width: 18% !important;
        margin-left: 40px;
    }

    .title-section2 {
        margin-bottom: 0rem !important;
    }

    .carousel-item {
        height: 600px;
        width: 98.5% !important;
    }

    .news-highlight .news-img {
        width: 100%;
        border-radius: 50px;
        padding: 22px;
        height: 592px;
    }

    .carousel-img2 {
        width: 55%;
        margin-left: 76px;
        height: 560px;
    }

    .text-decoration-none .fw-500 {
        margin-top: 32px;
        font-size: 20px;
    }

    .news-list-item {
        height: 27rem;
        padding: 2rem;
    }

    .news-list-item h2 {
        font-size: 28px;
    }

    .text-decoration-none .fw-700 {
        font-size: 2.5rem;
    }

    .img-desktop .carousel-img2 {
        margin-bottom: 3rem;
    }

    .margin-tv {
        margin: 40px 0px;
        border-radius: 40px !important;
        height: 72px !important;
        padding: 8px !important;
    }

    #search_sec {
        font-size: 1.6rem !important;
    }

    .portal-link .text-position {
        padding: 20px !important;
    }

    .portais {
        font-size: 28px !important;
    }

    .portais-nome {
        font-size: 20px !important;
    }

    .fontsize {
        font-size: 40px !important;
    }

    .portal-link a {
        height: 180px;
    }

    .grid-container {
        width: 88% !important;
        margin-left: 48px;
    }

    .container-home {
        margin-left: 0;
        margin-right: 0;
        padding-left: 400px;
        padding-right: 154px;
    }

    .gallery {
        padding-right: 450px;
    }
}

@media (min-width: 3001px) and (max-width: 3300px) {
    .main-notice {
        padding: 0px 28px 0px 12px !important;
    }

    .title-section2 {
        margin-bottom: 0rem !important;
        margin-top: 3.5rem;
    }

    .informes .gap-3 {
        gap: 2rem !important;
        margin-left: 20px;
    }

    .informes-column .text-nowrap {
        font-size: 36px !important;
    }

    .informes-column p {
        font-size: 26px !important;
    }

    .div-main-news {
        width: 67% !important;
    }

    .informes-column {
        height: 500px !important;
        width: 28% !important;
    }

    .informes {
        height: 580px !important;
        width: 70% !important;
    }

    .informes-item {
        max-width: 500px;
        max-height: 500px;
    }

    .btn-size {
        margin-top: 70px !important;
    }

    .service-grid {
        width: 57% !important;
    }

    .service-card {
        width: 300px;
    }

    .div-secretaria {
        width: 18% !important;
        margin-left: 40px;
    }

    .title-section2 {
        margin-bottom: 0rem !important;
    }

    .carousel-item {
        height: 600px;
        width: 98.5% !important;
    }

    .news-highlight .news-img {
        width: 100%;
        border-radius: 50px;
        padding: 22px;
        height: 592px;
    }

    .carousel-img2 {
        width: 55%;
        margin-left: 76px;
        height: 560px;
    }

    .text-decoration-none .fw-500 {
        margin-top: 32px;
        font-size: 20px;
    }

    .news-list-item {
        height: 27rem;
        padding: 2rem;
    }

    .news-list-item h2 {
        font-size: 28px;
    }

    .text-decoration-none .fw-700 {
        font-size: 2.5rem;
    }

    .img-desktop .carousel-img2 {
        margin-bottom: 3rem;
    }

    .margin-tv {
        margin: 40px 0px;
        border-radius: 40px !important;
        height: 72px !important;
        padding: 8px !important;
    }

    #search_sec {
        font-size: 1.6rem !important;
    }

    .portal-link .text-position {
        padding: 20px !important;
    }

    .portais {
        font-size: 28px !important;
    }

    .portais-nome {
        font-size: 20px !important;
    }

    .fontsize {
        font-size: 40px !important;
    }

    .portal-link a {
        height: 180px;
    }

    .grid-container {
        width: 88% !important;
        margin-left: 58px;
    }

    .container-home {
        margin-left: 0;
        margin-right: 0;
        padding-left: 350px;
        padding-right: 154px;
    }

    .gallery {
        padding-right: 450px;
    }
}

/* @media (min-width: 3001px) and (max-width: 3300px) {
    .main-notice {
        padding: 0px 28px 0px 12px !important;
    }

    .title-section2 {
        margin-bottom: 0rem !important;
        margin-top: 3.5rem;
    }

    .informes .gap-3 {
        gap: 2rem !important;
        margin-left: 20px;
    }

    .div-main-news {
        width: 67% !important;
    }

    .informes-column {
        height: 500px !important;
        width: 28% !important;
    }

    .informes {
        height: 500px !important;
        width: 70% !important;
    }

    .informes-item {
        max-width: 510px;
        max-height: 500px;
    }

    .btn-size {
        margin-top: 70px !important;
    }

    .service-grid {
        width: 58% !important;
    }

    .div-secretaria {
        width: 25% !important;
        margin-left: 40px;
    }

    .title-section2 {
        margin-bottom: 0rem !important;
    }

    .carousel-item {
        height: 550px;
    }

    .news-highlight .news-img {
        width: 100%;
        border-radius: 50px;
        padding: 22px;
        height: 548px;
    }

    .carousel-img2 {
        width: 68%;
        margin-left: 96px;
        height: 516px;
    }

    .text-decoration-none .fw-500 {
        margin-top: 32px;
        font-size: 20px;
    }

    .news-list-item h2 {
        font-size: 28px;
    }

    .text-decoration-none .fw-700 {
        font-size: 2.5rem;
    }

    .img-desktop .carousel-img2 {
        margin-bottom: 3rem;
    }

    .margin-tv {
        margin: 40px 0px;
        border-radius: 40px !important;
        height: 72px !important;
        padding: 8px !important;
    }

    #search_sec {
        font-size: 1.6rem !important;
    }

    .portal-link .text-position {
        padding: 20px !important;
    }

    .portais {
        font-size: 28px !important;
    }

    .portais-nome {
        font-size: 20px !important;
    }

    .fontsize {
        font-size: 40px !important;
    }

    .service-card {
        width: 272px;
    }

    .portal-link a {
        height: 180px;
    }

    .grid-container {
        width: 90% !important;
    }
} */

@media (min-width: 2801px) and (max-width: 3000px) {
    .main-notice {
        padding: 0px 28px 0px 12px !important;
    }

    .title-section2 {
        margin-bottom: 0rem !important;
        margin-top: 3.5rem;
    }

    .informes .gap-3 {
        gap: 2rem !important;
        margin-left: 20px;
    }

    .informes-column .text-nowrap {
        font-size: 36px !important;
    }

    .informes-column p {
        font-size: 26px !important;
    }

    .div-main-news {
        width: 67% !important;
    }

    .informes-column {
        height: 500px !important;
        width: 28% !important;
    }

    .informes {
        height: 580px !important;
        width: 70% !important;
    }

    .informes-item {
        max-width: 466px;
        max-height: 500px;
    }

    .btn-size {
        margin-top: 70px !important;
    }

    .service-grid {
        width: 57% !important;
    }

    .service-card {
        width: 270px;
    }

    .div-secretaria {
        width: 20% !important;
        margin-left: 40px;
    }

    .title-section2 {
        margin-bottom: 0rem !important;
    }

    .carousel-item {
        height: 600px;
        width: 98.5% !important;
    }

    .news-highlight .news-img {
        width: 100%;
        border-radius: 50px;
        padding: 22px;
        height: 592px;
    }

    .carousel-img2 {
        width: 60%;
        margin-left: 76px;
        height: 560px;
    }

    .text-decoration-none .fw-500 {
        margin-top: 32px;
        font-size: 20px;
    }

    .news-list-item {
        height: 27rem;
        padding: 2rem;
    }

    .news-list-item h2 {
        font-size: 28px;
    }

    .text-decoration-none .fw-700 {
        font-size: 2.5rem;
    }

    .img-desktop .carousel-img2 {
        margin-bottom: 3rem;
    }

    .margin-tv {
        margin: 40px 0px;
        border-radius: 40px !important;
        height: 72px !important;
        padding: 8px !important;
    }

    #search_sec {
        font-size: 1.6rem !important;
    }

    .portal-link .text-position {
        padding: 20px !important;
    }

    .portais {
        font-size: 28px !important;
    }

    .portais-nome {
        font-size: 20px !important;
    }

    .fontsize {
        font-size: 40px !important;
    }

    .portal-link a {
        height: 180px;
    }

    .grid-container {
        width: 88% !important;
        margin-left: 84px;
    }

    .container-home {
        margin-left: 0;
        margin-right: 0;
        padding-left: 350px;
        padding-right: 154px;
    }

    .gallery {
        padding-right: 450px;
    }
}

@media (min-width: 2601px) and (max-width: 2800px) {
    .main-notice {
        padding: 20px !important;
    }

    .title-section2 {
        margin-bottom: 0rem !important;
        margin-top: 3.5rem;
    }

    .informes .gap-3 {
        gap: 2rem !important;
        margin-left: 20px;
    }

    .div-main-news {
        width: 67% !important;
    }

    .informes-column {
        height: 500px !important;
        width: 28% !important;
    }

    .informes {
        height: 500px !important;
        width: 70% !important;
    }

    .informes-item {
        max-width: 450px;
        max-height: 500px;
    }

    .btn-size {
        margin-top: 70px !important;
    }

    .service-grid {
        width: 53% !important;
    }

    .grid-container {
        margin-left: 42px;
    }

    .div-secretaria {
        width: 22% !important;
    }

    .title-section2 {
        margin-bottom: 2rem !important;
    }

    .carousel-img2 {
        width: 63%;
        margin-left: 80px;
        height: 467px;
    }

    .img-desktop .carousel-img2 {
        margin-bottom: 3rem;
    }

    .margin-tv {
        margin: 36px 0px;
    }

    .fontsize {
        font-size: 36px !important;
    }

    .service-card {
        width: 270px;
    }

    .container-home {
        margin-left: 0;
        margin-right: 0;
        padding-left: 300px;
        padding-right: 154px;
    }

    .gallery {
        padding-right: 350px;
    }
}

@media (min-width: 2341px) and (max-width: 2600px) {
    .main-notice {
        padding: 20px !important;
    }

    .title-section2 {
        margin-bottom: 0rem !important;
        margin-top: 3.5rem;
    }

    .informes .gap-3 {
        gap: 2rem !important;
        margin-left: 20px;
    }

    .div-main-news {
        width: 67% !important;
    }

    .informes-column {
        height: 500px !important;
        width: 28% !important;
    }

    .informes {
        height: 500px !important;
        width: 70% !important;
    }

    .informes-item {
        max-width: 384px;
        max-height: 500px;
    }

    .btn-size {
        margin-top: 70px !important;
    }

    .service-grid {
        width: 53% !important;
    }

    .grid-container {
        margin-left: 42px;
    }

    .div-secretaria {
        width: 22% !important;
    }

    .title-section2 {
        margin-bottom: 2rem !important;
    }

    .carousel-img2 {
        width: 63%;
        margin-left: 80px;
        height: 467px;
    }

    .img-desktop .carousel-img2 {
        margin-bottom: 3rem;
    }

    .margin-tv {
        margin: 36px 0px;
    }

    .fontsize {
        font-size: 36px !important;
    }

    .service-card {
        width: 242px;
    }

    .container-home {
        margin-left: 0;
        margin-right: 0;
        padding-left: 300px;
        padding-right: 154px;
    }

    .gallery {
        padding-right: 350px;
    }
}

@media (min-width: 2121px) and (max-width: 2340px) {
    .main-notice {
        padding: 20px !important;
    }

    .title-section2 {
        margin-bottom: 0rem !important;
    }

    .informes .gap-3 {
        gap: 2rem !important;
        margin-left: 20px;
    }

    .informes-column {
        height: 500px !important;
        width: 28% !important;
    }

    .informes {
        height: 500px !important;
        width: 70% !important;
    }

    .informes-item {
        max-width: 370px;
        max-height: 500px;
    }

    .btn-size {
        margin-top: 70px !important;
    }

    .service-grid {
        width: 56% !important;
    }

    .div-secretaria {
        width: 25% !important;
        margin-left: 20px;
    }

    .title-section2 {
        margin-bottom: 2rem !important;
    }

    .carousel-img2 {
        width: 75%;
        margin-left: 48px;
        height: 467px;
    }

    .margin-tv {
        margin: 36px 0px;
    }

    .fontsize {
        font-size: 36px !important;
    }

    hr {
        width: 97% !important;
    }

    .service-card {
        width: 230px;
    }

    .container-home {
        margin-left: 0;
        margin-right: 0;
        padding-left: 250px;
        padding-right: 154px;
    }

    .gallery {
        padding-right: 250px;
    }
}

@media (min-width: 2048px) and (max-width: 2120px) {
    .main-notice {
        padding: 20px !important;
    }

    .title-section2 {
        margin-bottom: 0rem !important;
    }

    .informes .gap-3 {
        gap: 2rem !important;
        margin-left: 20px;
    }

    .informes-column {
        height: 500px !important;
        width: 28% !important;
    }

    .informes {
        height: 500px !important;
        width: 70% !important;
    }

    .informes-item {
        max-width: 348px;
        max-height: 500px;
    }

    .btn-size {
        margin-top: 70px !important;
    }

    .service-grid {
        width: 55% !important;
        margin-left: 10px !important;
    }

    .div-secretaria {
        width: 25% !important;
        margin-left: 20px;
    }

    .title-section2 {
        margin-bottom: 2rem !important;
    }

    .carousel-img2 {
        width: 75%;
        margin-left: 48px;
        height: 467px;
    }

    .margin-tv {
        margin: 36px 0px;
    }

    .fontsize {
        font-size: 36px !important;
    }

    hr {
        width: 97% !important;
    }

    .service-card {
        width: 210px;
    }

    .container-home {
        margin-left: 0;
        margin-right: 0;
        padding-left: 220px;
        padding-right: 154px;
    }

    .gallery {
        padding-right: 250px;
    }
}

@media (min-width: 1400px) and (max-width: 1600px) {
    .container-home {
        margin-left: 0;
        margin-right: 0;
        padding-left: 120px;
        padding-right: 120px;
    }

    .img-pelotas-left {
        top: 262px;
        width: 144px;
        height: 156px;
    }

    .img-pelotas-right {
        top: 262px;
        width: 144px;
        height: 156px;
    }

    .notice-main-title {
        height: 50px !important;
    }

    .notice-main-title h2 {
        font-size: 26px;
    }

    .notice-main-description {
        padding-top: 40px !important;
    }

    .notice-main-description h2 {
        font-size: 20px;
    }

    .notice-secondary-description p {
        margin-top: 6.5rem;
    }

    .carousel-inner {
        height: 350px;
    }

    .news-item {
        height: 350px !important;
    }

    .tablet-width {
        height: 350px;
    }

    .news-img {
        height: 350px !important;
        width: 400px !important;
        max-width: 106% !important;
    }

    .carousel-indicators {
        margin-left: 550px !important;
        padding-bottom: 10px !important;
    }

    .news-item {
        height: 280px;
    }

    .div-secretaria {
        width: 30.5% !important;
    }

    .img-desktop {
        width: 100% !important;
    }

    .carousel-img2 {
        width: 95%;
        margin-left: 36px;
    }

    .informes-column {
        width: 25% !important;
    }

    .btn-size {
        width: 320px !important;
    }

    .informes-column {
        width: 27% !important;
        margin-left: 30px !important;
    }

    .informes {
        width: 69% !important;
        margin-left: 30px !important;
    }

    .informes-item {
        max-width: 244px;
        height: auto;
    }

    .service-card {
        width: 174px;
        height: 210px;
    }
}

@media (min-width: 1120px) AND (max-width: 1280px) {
    .home-header {
        height: 200px;
        position: relative;
        overflow: hidden;
        margin-top: 150px;
    }

    .img-pelotas {
        margin-top: 80px;
        width: 100%;
        height: 200px;
        transform: translateY(0px);
    }

    .img-pelotas-left {
        position: absolute;
        top: 190px;
        left: -10px;
        width: 140px;
        height: 150px;
        padding: 10px;
    }

    .img-pelotas-right {
        position: absolute;
        top: 190px;
        right: -10px;
        width: 140px;
        height: 150px;
        transform: scale(-1, 1);
        padding: 10px;
    }

    .container-home {
        margin-left: 0;
        margin-right: 0;
        padding-left: 136px;
        padding-right: 104px;
    }

    .main-column {
        margin-right: 0px;
    }

    .tablet-width {
        width: 100% !important;
    }

    .notice-main-category {
        padding: 0px 20px !important;
    }

    .notice-main-title {
        padding: 0px 20px 5px 20px !important;
        height: 80px !important;
    }

    .notice-main-description {
        padding: 0px 20px !important;
    }

    .carousel-inner {
        padding: 28px !important;
        width: 90% !important;
        margin: -28px -12px !important;
    }

    .carousel-inner3 {
        padding: 28px !important;
        width: 107% !important;
        margin: -28px -20px !important;
    }

    .carousel-item {
        width: 100% !important;
    }

    .notice-main-category h2 {
        margin-top: 5px;
        font-size: 14px;
        color: #666;
    }

    .notice-secondary-description p {
        margin: 16px 20px 0px 20px;
    }

    .notice-secondary-description-second {
        margin: 0px 20px 10px 20px !important;
    }

    .carousel-indicators {
        display: flex;
        justify-content: center !important;
        margin-right: 16px !important;
        padding-bottom: 16px !important;
    }

    .div-secretaria {
        width: 38% !important;
        margin-left: -88px;
    }

    .div-secretaria h5 {
        margin-bottom: 2.5rem !important;
    }

    .tablet-margin {
        margin-bottom: 2.5rem !important;
    }

    .portal-link {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        gap: 10px;
    }

    .portal-link a {
        flex: 1;
        text-align: center;
        padding: 20px 10px;
        color: white;
        font-weight: bold;
        text-decoration: none;
    }

    .hidden {
        display: none;
    }

    .text-position {
        text-align: center !important;
    }

    .news-width {
        width: 100% !important;
    }

    .content-style {
        justify-content: center !important;
    }

    .title-section2 {
        font-weight: 800;
        margin-top: 20px;
        margin-bottom: 1rem !important;
    }

    .news-list {
        margin-top: 0 !important;
    }

    .news-list-item {
        height: 20rem;
        padding: 0;
        box-sizing: border-box;
        border-right: 1px solid #6c757d65;
    }

    .news-list-item h2 {
        font-weight: 400;
        height: 110px;
        font-size: 22px;
        margin: 5px;
    }

    .news-button {
        margin-top: 10px;
        height: 50px;
        width: 50%;
        border-radius: 30px;
        background-color: #36a5fd;
    }

    .news-p {
        margin-top: 90px;
        margin-bottom: 0;
        font-style: italic;
        padding: 3px;
        font-size: 14px;
    }

    .carousel-img {
        width: 50%;
    }

    .imgs-width {
        width: 100% !important;
    }

    .carousel-inner2 {
        padding: 0 !important;
        margin: 0 !important;
    }

    .carousel-img2 {
        width: 92%;
        padding: 0 !important;
    }

    .informes {
        width: 70% !important;
    }

    .informes-column {
        width: 32% !important;
    }

    .informes-item {
        width: 100%;
        max-width: 416px;
        min-height: 362px;
        height: auto;
    }

    .informes-item:nth-of-type(n + 3) {
        display: none !important;
    }

    .informes-content:nth-of-type(n + 3) {
        display: none !important;
    }

    .btn-informes {
        margin-top: 80px !important;
    }

    .services-width {
        width: 100% !important;
    }

    .service-acess {
        color: white;
        width: 217px;
        height: 46px;
        font-family: Rawline;
        font-weight: 400;
        font-size: 20px;
    }

    .service-name {
        color: white;
        width: 362px;
        height: 72px;
        font-family: Rawline;
        font-weight: 800;
        font-size: 72px;
        display: flex;
        text-align: center !important;
        align-items: flex-start;
    }

    .service-grid {
        width: 100% !important;
    }

    .servicos {
        padding-top: 16px !important;
        padding-bottom: 20px !important;
        border-radius: 0px 0px 28px 0px !important;
    }

    .grid-container {
        margin: 0px 10px;
        justify-items: center !important;
    }

    .service-card {
        width: 220px !important;
        height: 180px !important;
    }

    .grid-container {
        column-gap: 12px !important;
        row-gap: 12px;
    }

    .service-image {
        width: 50px;
        height: 50px;
        margin: 35px;
    }

    .service-button {
        border-radius: 30px;
        width: 364.76px;
        height: 50px !important;
    }

    .service-button-img {
        margin-bottom: 6px !important;
        margin-left: 15px;
    }

    .service-title {
        height: 60px !important;
    }

    .gallery {
        margin-bottom: 0px;
        margin-top: 40px;
    }

    .gallery .photo {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .gallery .photo:nth-of-type(n + 3) {
        display: none;
    }

    .portais {
        position: relative;
        top: 16px;
    }

    .portais-nome {
        position: relative;
        top: -16px;
    }
}

@media (min-width: 1024px) AND (max-width: 1120px) {
    .home-header {
        height: 200px;
        position: relative;
        overflow: hidden;
        margin-top: 150px;
    }

    .img-pelotas {
        margin-top: 80px;
        width: 100%;
        height: 200px;
        transform: translateY(0px);
    }

    .img-pelotas-left {
        position: absolute;
        top: 158px;
        left: -10px;
        width: 140px;
        height: 150px;
        padding: 10px;
    }

    .img-pelotas-right {
        position: absolute;
        top: 158px;
        right: -10px;
        width: 140px;
        height: 150px;
        transform: scale(-1, 1);
        padding: 10px;
    }

    .container-home {
        margin-left: 0;
        margin-right: 0;
        padding-left: 32px;
        padding-right: 32px;
    }

    .main-column {
        margin-right: 0px;
    }

    .tablet-width {
        width: 100% !important;
    }

    .notice-main-category {
        padding: 0px 20px !important;
    }

    .notice-main-title {
        padding: 0px 20px 5px 20px !important;
        height: 80px !important;
    }

    .notice-main-description {
        padding: 0px 20px !important;
    }

    .carousel-inner {
        padding: 28px !important;
        width: 90% !important;
        margin: -28px -12px !important;
    }

    .carousel-inner3 {
        padding: 28px !important;
        width: 107% !important;
        margin: -28px -20px !important;
    }

    .carousel-item {
        width: 100% !important;
    }

    .notice-main-category h2 {
        margin-top: 5px;
        font-size: 14px;
        color: #666;
    }

    .notice-secondary-description p {
        margin: 16px 20px 0px 20px;
    }

    .notice-secondary-description-second {
        margin: 0px 20px 10px 20px !important;
    }

    .carousel-indicators {
        display: flex;
        justify-content: center !important;
        margin-right: 16px !important;
        padding-bottom: 16px !important;
    }

    .div-secretaria {
        width: 36% !important;
        margin-left: -88px;
    }

    .div-secretaria h5 {
        margin-bottom: 2.5rem !important;
    }

    .tablet-margin {
        margin-bottom: 2.5rem !important;
    }

    .portal-link {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        gap: 10px;
    }

    .portal-link a {
        flex: 1;
        text-align: center;
        padding: 16px 10px;
        color: white;
        font-weight: bold;
        text-decoration: none;
    }

    .hidden {
        display: none;
    }

    .text-position {
        text-align: center !important;
    }

    .news-width {
        width: 100% !important;
    }

    .content-style {
        justify-content: center !important;
    }

    .title-section2 {
        font-weight: 800;
        margin-top: 20px;
        margin-bottom: 1rem !important;
    }

    .news-list {
        margin-top: 0 !important;
    }

    .news-list-item {
        height: 20rem;
        padding: 0;
        box-sizing: border-box;
        border-right: 1px solid #6c757d65;
    }

    .news-list-item h2 {
        font-weight: 400;
        height: 110px;
        font-size: 22px;
        margin: 5px;
    }

    .news-button {
        margin-top: 10px;
        height: 50px;
        width: 50%;
        border-radius: 30px;
        background-color: #36a5fd;
    }

    .news-p {
        margin-top: 90px;
        margin-bottom: 0;
        font-style: italic;
        padding: 3px;
        font-size: 14px;
    }

    .carousel-img {
        width: 50%;
    }

    .imgs-width {
        width: 100% !important;
    }

    .carousel-inner2 {
        padding: 0 !important;
        margin: 0 !important;
    }

    .carousel-img2 {
        width: 100%;
        padding: 0 !important;
    }

    .informes {
        width: 66% !important;
    }

    .informes-column {
        width: 35% !important;
    }

    .informes-item {
        width: 100%;
        max-width: 416px;
        min-height: 362px;
        height: auto;
    }

    .informes-item:nth-of-type(n + 3) {
        display: none !important;
    }

    .informes-content:nth-of-type(n + 3) {
        display: none !important;
    }

    .btn-informes {
        margin-top: 80px !important;
    }

    .services-width {
        width: 100% !important;
    }

    .service-acess {
        color: white;
        width: 217px;
        height: 46px;
        font-family: Rawline;
        font-weight: 400;
        font-size: 20px;
    }

    .service-name {
        color: white;
        width: 362px;
        height: 72px;
        font-family: Rawline;
        font-weight: 800;
        font-size: 72px;
        display: flex;
        text-align: center !important;
        align-items: flex-start;
    }

    .service-grid {
        width: 100% !important;
    }

    .servicos {
        padding-top: 16px !important;
        padding-bottom: 20px !important;
        border-radius: 0px 0px 28px 0px !important;
    }

    .grid-container {
        margin: 0px 16px;
        column-gap: 24px !important;
        row-gap: 24px;
    }

    .service-card {
        width: 176px;
        height: 180px;
    }

    .service-image {
        width: 50px;
        height: 50px;
        margin: 35px;
    }

    .service-button {
        border-radius: 30px;
        width: 364.76px;
        height: 50px !important;
    }

    .service-button-img {
        margin-bottom: 6px !important;
        margin-left: 15px;
    }

    .service-title {
        height: 60px !important;
    }

    .gallery {
        margin-bottom: 0px;
        margin-top: 40px;
    }

    .gallery .photo {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .gallery .photo:nth-of-type(n + 3) {
        display: none;
    }

    .portais {
        position: relative;
        top: 16px;
    }

    .portais-nome {
        position: relative;
        top: -16px;
    }
}

@media (min-width: 768px) AND (max-width: 880px) {
    .home-header {
        height: 200px;
        position: relative;
        overflow: hidden;
        margin-top: 150px;
    }

    .img-pelotas {
        margin-top: 80px;
        width: 100%;
        height: 200px;
        transform: translateY(0px);
    }

    .img-pelotas-left {
        position: absolute;
        top: 158px;
        left: -10px;
        width: 140px;
        height: 150px;
        padding: 10px;
    }

    .img-pelotas-right {
        position: absolute;
        top: 158px;
        right: -10px;
        width: 140px;
        height: 150px;
        transform: scale(-1, 1);
        padding: 10px;
    }

    .container-home {
        margin-left: 0;
        margin-right: 0;
        padding-left: 32px;
        padding-right: 32px;
    }

    .main-column {
        margin-right: 0px;
    }

    .tablet-width {
        width: 100% !important;
    }

    .notice-main-category {
        padding: 0px 20px !important;
    }

    .notice-main-title {
        padding: 0px 20px 5px 20px !important;
        height: 80px !important;
    }

    .notice-main-description {
        padding: 0px 20px !important;
    }

    .carousel-inner {
        padding: 28px !important;
        width: 100% !important;
        margin: -28px -20px !important;
    }

    .carousel-inner3 {
        padding: 28px !important;
        width: 107% !important;
        margin: -28px -20px !important;
    }

    .notice-main-category h2 {
        margin-top: 5px;
        font-size: 14px;
        color: #666;
    }

    .notice-secondary-description p {
        margin: 16px 20px 0px 20px;
    }

    .notice-secondary-description-second {
        margin: 0px 20px 10px 20px !important;
    }

    .carousel-indicators {
        display: flex;
        justify-content: center !important;
        margin-right: 16px !important;
        padding-bottom: 16px !important;
    }

    .div-secretaria {
        width: 37.5% !important;
        margin-left: -35px;
    }

    .portal-link {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        gap: 10px;
    }

    .portal-link a {
        flex: 1;
        text-align: center;
        padding: 7px 10px;
        color: white;
        font-weight: bold;
        text-decoration: none;
    }

    .hidden {
        display: none;
    }

    .text-position {
        text-align: center !important;
    }

    .news-width {
        width: 100% !important;
    }

    .content-style {
        justify-content: center !important;
    }

    .title-section2 {
        font-weight: 800;
        margin-top: 20px;
        margin-bottom: 1rem !important;
    }

    .news-list {
        margin-top: 0 !important;
    }

    .news-list-item {
        height: 20rem;
        padding: 0;
        box-sizing: border-box;
        border-right: 1px solid #6c757d65;
    }

    .news-list-item h2 {
        font-weight: 400;
        height: 110px;
        font-size: 18px;
        margin: 5px;
    }

    .news-button {
        margin-top: 10px;
        height: 50px;
        width: 50%;
        border-radius: 30px;
        background-color: #36a5fd;
    }

    .news-p {
        margin-top: 90px;
        margin-bottom: 0;
        font-style: italic;
        padding: 3px;
        font-size: 14px;
    }

    .carousel-img {
        width: 50%;
    }

    .imgs-width {
        width: 100% !important;
    }

    .carousel-inner2 {
        padding: 0 !important;
        margin: 0 !important;
    }

    .carousel-img2 {
        width: 100%;
        padding: 0 !important;
    }

    .informes {
        width: 65% !important;
    }

    .informes-item {
        width: 100%;
        max-width: 416px;
        min-height: 362px;
        height: auto;
    }

    .btn-informes {
        margin-top: 80px !important;
    }

    .services-width {
        width: 100% !important;
    }

    .service-acess {
        color: white;
        width: 217px;
        height: 46px;
        font-family: Rawline;
        font-weight: 400;
        font-size: 20px;
    }

    .service-name {
        color: white;
        width: 362px;
        height: 72px;
        font-family: Rawline;
        font-weight: 800;
        font-size: 72px;
        display: flex;
        text-align: center !important;
        align-items: flex-start;
    }

    .service-grid {
        width: 100% !important;
    }

    .servicos {
        padding-top: 16px !important;
        padding-bottom: 20px !important;
        border-radius: 0px 0px 28px 0px !important;
    }

    .grid-container {
        margin: 0px 10px;
    }

    .service-card {
        width: 148px;
        height: 200px;
    }

    .grid-container {
        column-gap: 12px !important;
        row-gap: 12px;
    }

    .service-image {
        width: 50px;
        height: 50px;
        margin: 35px;
    }

    .service-button {
        border-radius: 30px;
        width: 364.76px;
        height: 50px !important;
    }

    .service-button-img {
        margin-bottom: 6px !important;
        margin-left: 15px;
    }

    .service-title {
        height: 60px !important;
    }

    .gallery {
        margin-bottom: 0px;
        margin-top: 40px;
    }

    .gallery .photo {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .gallery .photo:nth-of-type(n + 3) {
        display: none;
    }

    .portais {
        position: relative;
        top: 16px;
    }

    .portais-nome {
        position: relative;
        top: -16px;
    }
}
