/* Otimiza o desempenho do CSS */
* {
    will-change: auto;
}

/* Somente aplique o "will-change" onde realmente há animações */
.animated, .hover, .menu, .banner {
    will-change: transform, opacity;
}

/* Evita repintura cara de elementos com blur, sombra ou transição */
img, video, iframe {
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* Transições mais suaves e leves */
.transition-smooth {
    transition: all 0.25s ease-out;
}


body, html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
/* Usa camadas de composição aceleradas para itens pesados */
.lazy-load, .parallax, .fade-in {
    content-visibility: auto;
    contain-intrinsic-size: 500px; /* Ajuste para o tamanho médio esperado */
}

/* Otimiza sombras e bordas */
.shadow, .card, .box {
    will-change: box-shadow;
}
/* Mantém animações mais leves */
@media (prefers-reduced-motion: no-preference) {
    .fade-in {
        animation: fadeIn 0.4s ease-out both;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Evita transições em elementos estáticos */
.no-transition * {
    transition: none !important;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
	height: 100%;
    width: 100%;
    max-width: 100%;
}

@font-face {
    font-family: 'UniteaSans';
    src: url('/fonts/UniteaSans-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'UniteaSans';
    src: url('/fonts/UniteaSans-RegularItalic.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'UniteaSans';
    src: url('/fonts/UniteaSans-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'UniteaSans';
    src: url('/fonts/UniteaSans-MediumItalic.otf') format('opentype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'UniteaSans';
    src: url('/fonts/UniteaSans-SemiBold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'UniteaSans';
    src: url('/fonts/UniteaSans-SemiBoldItalic.otf') format('opentype');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'UniteaSans';
    src: url('/fonts/UniteaSans-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'UniteaSans';
    src: url('/fonts/UniteaSans-BoldItalic.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'UniteaSans';
    src: url('/fonts/UniteaSans-ExtraBold.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'UniteaSans';
    src: url('/fonts/UniteaSans-ExtraBoldItalic.otf') format('opentype');
    font-weight: 800;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'UniteaSans';
    src: url('/fonts/UniteaSans-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'UniteaSans';
    src: url('/fonts/UniteaSans-BlackItalic.otf') format('opentype');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

.rsnp-mnu .rspn-top-bar-mobile {
	background: #111;
	padding: 8px 12px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.rsnp-mnu .rspn-top-bar-mobile ul.social-mobile {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px 12px;
	text-align: center;
}

.rsnp-mnu .rspn-top-bar-mobile ul.social-mobile li a {
	color: #ccc;
	font-size: 12px;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 4px;
	transition: color 0.3s;
}

.rsnp-mnu .rspn-top-bar-mobile ul.social-mobile li a:hover {
	color: #388ab6; 
}

.rsnp-mnu .rspn-scil {
	display: flex;
	justify-content: center;
}

.rsnp-mnu .rspn-scil li a {
	color: #fff;
	font-size: 16px;
}

.rsnp-mnu .rspn-srch {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.rsnp-mnu .rspn-srch input {
	width: 96%;
	background: #222;
	color: #fff;
	border: none;
	padding: 7px;
	border-radius: 3px;
}

.rsnp-mnu .rspn-srch button {
	background: transparent;
	border: none;
	color: #fff;
	cursor: pointer;
}

.rsnp-mnu {
	background: #000;
	color: #fff;
}

.btn1 {
    border: 2px solid;
    color: #414141;
    font-weight: 700;
    font-family: open sans;
    letter-spacing: 0;
    font-size: 15px;
    display: inline-block;
    padding: 3px 15px 3px;
    text-align: center;
	width: 100%;
	background-color: #fde428;
	border-color: #fde428;
	margin-top: 10px;
	
}
.btnn {
    border: 2px solid;
    color: #f2f2f2;
    font-weight: 700;
    font-family: open sans;
    letter-spacing: 0;
    font-size: 16px;
    display: inline-block;
    padding: 3px 15px 3px;
    text-align: center;
    width: 100%;
    background-color: #16d7f3;
    border-color: #16d7f3;
    margin-top: 10px;
}


.infocaixa {
    background-color: #bb9e9e;
}
a.infocaixa:hover {
    color: #337ab7 !important; /* ou qualquer cor desejada */
}



.btn1.ylw-bg {
    border-color: #d0c3c6;
}

.min-wdth150 {min-width: 150px;}
.btnn.rd-bg {color: #fff;}
.btnn:hover, 
.btnn:focus {background-color: blue;}

.titlee > h3 {
  font-size: 25px;
  font-family: poppins;
  font-weight: 700;
  color: #002e5b;
  letter-spacing: -.4px;
  margin: 0;
  position: relative;
  margin-bottom: 15px;
  letter-spacing: 1px;
}
.titlee {
  float: left;
  width: 100%;
}

.titlee > h3.sudo-bottom {padding-bottom: 20px;}
.sudo-bottom {position: relative;}
.sudo-bottom:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
}

.titlee > .sudo-bottom:before,
.titlee.sudo-bottom:before {
  height: 6px;
  width: 35px;
}
.titlee > p {
  font-family: poppins;
  font-weight: 500;
  color: #777;
  display: inline-block;
  letter-spacing: 0;
  max-width: 38%;
}
  
.ta{
  font-size: 15px;
  margin-right: 5px;
}


.sd-wdgt {
  border: 1px solid #f1f1f1;
  padding: 50px 40px 40px;
  -webkit-box-shadow: 0 12px 8px rgba(0,0,0,0.04);
  -ms-box-shadow: 0 12px 8px rgba(0,0,0,0.04);
  -o-box-shadow: 0 12px 8px rgba(0,0,0,0.04);
  box-shadow: 0 12px 8px rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}
.sd-wdgt:before {
  content: "";
  -webkit-clip-path: polygon(93% 41%, 100% 100%, 100% 0%, 0% 0%, 57% 7%, 80% 18%, 90% 29%);
  background-color: #c3e0f1;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  height: 100px;
  width: 100%;
}

.cmp-img > img {
    width: 100%;
    height: 90px;
    margin-bottom: 20px;
}

.prtf-cap-inr {
    display: inline-block;
    vertical-align: bottom;
    position: absolute;
    bottom: 0;
    background-color: #000;
    padding: 15px;
    max-width: 1260px;
    width: 100%;
    right: 0;
}


.pckg-by {
    float: left;
    width: 100%;
    position: relative;
    overflow: hidden;
    border: 2px solid #fafafa;
    padding: 50px 0 0px;
    margin-top: 30px;
}
.pckg-by:before {
    content: "";
    position: absolute;
    height: 200px;
    width: 100px;
    top: -40px;
    right: -62px;
    -webkit-transform: rotate(-20deg);
    -ms-transform: rotate(-20deg);
    -o-transform: rotate(-20deg);
    transform: rotate(-20deg);
}
.fi-google-plus {
    font-size: 30px; 	
}

.pckg-hdr {
    float: left;
    width: 100%;
    padding-bottom: 10px;
    border-bottom: 1px solid #fafafa;
}

.text-center {
    text-align: -webkit-center;
    margin-bottom: 10px;
}

.fo-clock-o:before {
    content: "\f017";
    font-size: 80px;
}

.fo-map-marker:before {
    content: "\f041";
	font-size: 80px;
}

.fo-facebook:before {
    content: "\f09a";
	font-size: 80px;
}

.fo-phone:before {
    content: "\f095";
	font-size: 80px;
}
.fo-google-plus:before {
    content: "\f0d5";
	font-size: 80px;
}
.fo-twitter:before {
    content: "\f099";
	font-size: 80px;
}
.fo-facebook-square:before {
    content: "\f082";
	font-size: 80px;
}
.fo-search:before {
    content: "\f002";
	font-size: 80px;
}
.fo-linkedin:before {
    content: "\f0e1";
	font-size: 80px;
}.fo-envelope:before {
    content: "\f0e0";
	font-size: 80px;
}

.fi-facebook:before {
    content: "\f09a";
	font-size: 14px;
}

.fi-google-plus:before {
    content: "\f0d5";
	font-size: 25px;
	
    margin-right: 8px; /* Aumente o valor para mais espaço */

}

.danger {
    background-color: #ffc2c2;
}

.success {
    background-color: #bceda7;
}


.serve-bx1.styl2 {
    padding: 0 80px;
}
.texte-center {
    text-align: center;
}
.serve-bx1 {
    float: left;
    width: 100%;
}
.pckg-plns {
    float: left;
    padding: 0 240px;
    width: 100%;
}
.row1 {
    margin-right: -15px;
    margin-left: -150px;
}

.h4, .h5, .h6, h4, h5, h6 {
    margin-top: 0px;
    margin-bottom: 0px;
}

h6 {
    margin-bottom: 10px !important;
	font-size: 13px !important;
}

.hstry-dtll > p {
    float: left;
    width: 100%;
    font-size: 15px;
    line-height: 20px;
    color: #666;
    letter-spacing: 0;
    margin: 0px 0 3px;
}

.img-responsiva {
    width: 100%;
    height: auto; /* Mantém a proporção da imagem */
    display: block;
}
/*comando para imagem responsiva <img src="assets/images/parlx14.jpg" alt="Imagem Responsiva" class="img-responsiva"> */

.pckg-by:before {
    content: "";
    position: absolute;
    height: 200px;
    width: 90px;
    top: -40px;
    right: -62px;
    -webkit-transform: rotate(-20deg);
    -ms-transform: rotate(-20deg);
    -o-transform: rotate(-20deg);
    transform: rotate(-20deg);
}



.seu-elemento {
    display: block;
}

.cnt-scl > a {
    display: inline-block;
    line-height: 70px;
    font-size: 24px;
    width: 70px;
    color: #fff;
    margin: -6px 0 11px;
    position: relative;
}


.password-btn {
    background-color: #f5f5f5; /* Cor do campo de entrada */
    border: none;
    width: 100%; /* Mesmo tamanho do input */
    padding: 10px;
    font-size: 16px;
    color: #888; /* Cor do texto do placeholder */
    text-align: left; /* Alinha o texto como no input */
    cursor: pointer;
}

.password-btn:hover {
    background-color: #e0e0e0;
}

.rgstr-frm button {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #473939;
    background-color: #f6f6f6;
    letter-spacing: .75px;
    font-family: lato;
    padding: 17px 40px;
    margin-top: 35px;

}

.rgstr-frm button span {
    position: relative;
    top: -4px;  /* Suba ou ajuste o valor até alinhar perfeitamente */
}

.verde{
	color: green;
}

.margin80 {
	margin-top: 80px;
}

.breadcrumb {
    background-color: transparent;
    color: #5900ff;
    padding: 0;
    display: flex; /* mais seguro que inline-block */
    flex-wrap: wrap; /* quebra linha se necessário */
    gap: 4px; /* espaço entre os itens */
    margin: 2px 0 0 0; /* remove o margin-left fixo */
    list-style: none; /* garantir visual limpo */
}

    .breadcrumb > li {
        color: #5900ff;
        font-family: montserrat;
        font-size: 15.34px;
        white-space: nowrap; /* evita quebra em palavras, mas pode ser removido se precisar */
    }
    .breadcrumb a {
        color: #5900ff;
        text-decoration: none;
    }
.page-header h1 {
    font-size: 2rem; /* menor para telas pequenas */
    word-wrap: break-word;
}



.blg-dtl-wrp > p {
    margin: 6px 0 0;
    line-height: 30px;
    color: #666;
}

.limite-texto {
        max-width: 800px; 
        word-wrap: break-word; 
    }
	
.justificado {
        text-align: justify;
    }

.marginl {
	margin-left: 210px;
}

.marginl0 {
	margin-left: 10px;
}

.img-grande {
    width: 100%;
    max-width: 600px;
    height: auto;
}

.blg-lst-pst {
    float: left;
    width: 100%;
}

.blg-dtl-wrp > a {
    display: inline-block;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    font-family: montserrat;
    letter-spacing: .5px;
    padding: 17px 60px;
    margin-top: 10px;
    margin-left: 168px;
}

.blg-dtl-wrp > h2 {
    font-size: 24px;
    color: #2f2933;
    font-weight: 600;
    letter-spacing: 0;
    font-family: open sans;
    margin: 20px 0 0;
	text-align: justify;
}

.blg-dtl-wrp > a {
    display: inline-block;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    font-family: montserrat;
    letter-spacing: .5px;
    padding: 17px 60px;
    margin-top: 10px;
    margin-left: 100px;
}

.h2, h2 {
    font-size: 22px;
}

p {
    font-family: open sans;
    color: #777;
    line-height: 17px;
    font-size: 14px;
    letter-spacing: 0.3px;
    margin-top: 10px;
}

.alignright {
    float: left;
    margin-top: 2px !important;
    margin-left: 20px;
    margin-right: 12px;
    width: auto !important;
}

.row2 {
    margin-right: -20px;
    margin-left: -290px;
}





.hstry-feat-pstt {
    float: left;
    width: 100%; /* Ou defina uma largura maior, como 400px ou mais */
    position: relative;
}

.hstry-feat .owl-nav {
    position: absolute;
    top: 160px;
    left: 110px;
}

.hstry-feat {
    float: left;
    margin-bottom: 25px;
    width: 400px; /* Ou 400px, dependendo do layout desejado */
}

.hstry-feat-pstt img {
    width: 100%; /* Aumenta a imagem para ocupar toda a largura disponível */
    max-width: 600px; /* Define um tamanho máximo, mas pode ser ajustado conforme necessário */
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
    padding: 0 15px 0 1px;
}

    .hstry-feat-pstt img.expanded {
        transform: scale(1.5); /* Primeiro clique */
    }

    .hstry-feat-pstt img.super-expanded {
        transform: scale(2.5); /* Segundo clique */
    }


.owl-carousel .owl-item img {
    display: block;
    width: 340px;
    height: 200px;
    object-fit: cover; /* opcional, ajuda a preencher mantendo o aspecto */
}





.h1, .h2, .h3, h1, h2, h3 {
    margin-top: 0px;
    margin-bottom: 5px;
	margin-left: 0px;
}

.blg-dtl-athr-inf > p {
    margin: 0;
    font-size: 14px;
    line-height: 30px;
    color: #666;
    letter-spacing: 0;
    margin-left: 10px;
}

.faa {
    display: inline-block;
    font: normal normal normal 14px / 1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    margin-left: 10px;
    -moz-osx-font-smoothing: grayscale;
}



/* Lightbox */
.lightbox {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
}

/* Imagem no lightbox */
#lightbox-img {
    max-width: 90%;
    max-height: 80%;
    transition: transform 0.3s ease-in-out;
    display: block;
    margin: 0 auto;
}

/* Botões de Navegação */
.lightbox-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: #0b0b0b;
    background: rgb(255 255 255 / 50%);
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    z-index: 99999;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .lightbox-btn:hover {
        background: rgba(0, 0, 0, 0.6);
    }

/* Botão "Anterior" */
.lightbox-prev {
    left: 230px; /* Posição ajustada para a esquerda */
}

/* Botão "Próximo" */
.lightbox-next {
    right: 230px; /* Posição ajustada para a direita */
}

/* Botão Fechar */
.lightbox-close {
    position: absolute;
    top: 12%;
    right: 20%;
    background: rgb(247 247 247 / 50%);
    border: none;
    color: #000000;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 1001;
    padding: 0 10px;
    border-radius: 4px;
}

    .lightbox-close:hover {
        background: rgba(0, 0, 0, 0.9);
    }

/* Efeito de fade-in */
.lightbox.show {
    display: flex;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsividade: telas menores */
@media (max-width: 768px) {
    /* Botão Fechar */
    .lightbox-close {
        font-size: 2rem;
        padding: 0 8px;
        top: 17%;
        right: 7%;
    }

    /* Ajuste nas setas */
    .lightbox-btn {
        font-size: 2rem;
        padding: 0.3rem 0.5rem;
        width: 40px;
        height: 40px;
    }

    .lightbox-prev, .lightbox-next {
        top: 50%;
        transform: translateY(-50%);
        width: 35px; /* Reduzindo o tamanho das setas */
        height: 35px;
    }

    .lightbox-prev {
        left: 5%; /* Ajustando a posição da seta esquerda */
    }

    .lightbox-next {
        right: 5%; /* Ajustando a posição da seta direita */
    }

    /* Imagem no lightbox */
    #lightbox-img {
        max-width: 95%;
        max-height: 70%;
    }
}

/* Responsividade para telas muito pequenas (por exemplo, em dispositivos móveis) */
@media (max-width: 480px) {
    /* Botão Fechar */
    .lightbox-close {
        font-size: 2rem;
        padding: 0 6px;
        top: 36%;
        right: 3%;
    }

    /* Ajuste nas setas */
    .lightbox-btn {
        font-size: 1.8rem;
        width: 35px;
        height: 35px;
    }

    .lightbox-prev{
        left: 10px; /* Ajustando a posição das setas para telas menores */
        
    }
    .lightbox-next {
        right: 10px;
    }

    /* Imagem no lightbox */
    #lightbox-img {
        max-width: 100%;
        max-height: 60%;
    }
}


.career-box {
    background-color: #fff;
    padding: 20px;
    overflow: auto;
    border: 6px solid #f2f2f2;
    margin: 20px 0px;
    -webkit-transition: 350ms ease all;
    transition: 350ms ease all;
}

.career-box:hover {
    border-color: #fde428;
}

.sd-wdgt ul li {
    font-size: 15px;
    color: #8799a3;
    font-weight: 400;
    letter-spacing: 0;
    font-family: open sans;
    padding-bottom: 0px;
    border-bottom: 1px solid #eaeaea;
}
.sd-wdgt ul li + li {
    margin-top: 0px;
}
.sd-wdgt ul li:last-child {
    border-bottom: 0;
    padding-bottom: 0px;
}
.btn11 {
    border: 2px solid;
    color: #414141;
    font-weight: 700;
    font-family: open sans;
    letter-spacing: 0;
    font-size: 16px;
    display: inline-block;
    padding: 0px 15px 0px;
    text-align: center;
    width: 100%;
    background-color: #fde428;
    border-color: #fde428;
    margin-top: 10px;
}

.blg-scl {
    display: inline-block;
    margin-top: 0px;
}

    .blg-scl > a {
		color: #2d2121;
		font-family: montserrat;
		font-weight: 700;
		display: inline-block;
		margin-left: -20px;
		width: 240px;
		text-align: center;
		font-size: 12px;
		letter-spacing: 1px;
		border-width: 2px;
		border-style: solid;
		padding: 5px 5px 5px 5px;
		margin-top: 1px;
		margin-bottom: 5px;
	}

.blg-lst-pst-inf > span i {
    margin-right: 7px;
    margin-bottom: 10px;
}
.blg-lst-pst-inf > p {
    font-size: 15px;
    letter-spacing: 0;
    line-height: 28px;
    color: #636363;
    margin: 15px 0 0;
    margin-bottom: 5px;
}


.letrapreta {
    color: #0f0f13;
}




.blg-scll {
    display: inline-block;
    margin-top: 0px;
}

    .blg-scll > a {
        color: #ffffff;
        font-family: montserrat;
        font-weight: 700;
        display: inline-block;
        margin-right: 5px;
        font-size: 12px;
        letter-spacing: 1px;
        border-width: 2px;
        border-style: solid;
        padding: 5px 5px 5px 5px;
        margin-top: 1px;
        margin-bottom: 5px;
    }



.googlee, a.googlee, a.googlee-clr:hover {
    background: #fde428;
    border-color: #ada390;
}
.googlle, a.googlle, a.googlle-clr:hover {
    background: #a1c9ed;
    border-color: #abcdd5;
}

.caixaazul {
    background: #a1c9ed;
	color: white;
}

.marrom {
    background: #cfb0b0;
}


.colortipo {
    background: #cfb0b0;
    border-color: #ada390;
}
.nova-cor-hover {
    color: #FF5733 !important; 
}

.blg-lst-psts {
    float: left;
    width: 800px;
}

.blg-lst-pst-info {
    background-color: #f7f7f7;
    float: left;
    padding: 30px 62px 30px;
    width: 100%;
}

        .table-container {
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
            margin-bottom: 20px;
        }
        table {
            border-collapse: collapse;
            background: white;
        }
        th, td {
            padding: 12px;
            text-align: center;
            border: 1px solid #ddd; /* Adicionando bordas visíveis */
        }
        th {
            background-color: #007bff;
            color: white;
        }
        tr:hover {
            background-color: #f1f1f1;
        }
        .nav-tabs {
            margin-top: 20px; /* Espaçamento da tabela para a linha de abas */
			margin-bottom: 10px;
        }
        
        /* Estilização do calendário */
        .calendar-container {
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
            margin-bottom: 20px;
            overflow-x: auto;
        }
        
        .calendar-table {
            width: 100%;
            border-collapse: collapse;
            background: white;
        }
        
        .calendar-table th, .calendar-table td {
            padding: 15px;
            text-align: center;
            border: 1px solid #ddd;
        }
        
        .calendar-table th {
            background-color: #28a745;
            color: white;
            font-size: 16px;
        }
        
        .calendar-table td {
            font-size: 14px;
            font-weight: bold;
            color: #333;
        }
        
        .calendar-table td:hover {
            background-color: #f1f1f1;
            cursor: pointer;
        }

        /* Números do calendário em destaque */
        .day-number {
            color: #28a745;
            font-weight: bold;
        }

        /* Estilização da barra de troca de meses */
        .calendar-tabs {
            margin-top: 10px;
            text-align: center;
        }

        .calendar-tabs .btn {
            margin: 5px;
            font-size: 14px;
        }
 /* Responsividade: Ajustes para telas menores */
        @media screen and (max-width: 768px) {
            .responsive-table th, .responsive-table td {
                padding: 10px; /* Reduz espaçamento */
                font-size: 12px; /* Texto menor */
                white-space: nowrap; /* Evita que o texto quebre em várias linhas */
            }
        }
		
.titlee1 {
  float: left;
  width: 100%;
  margin-bottom: 20px;
}
.titlee1 > h3 {
  font-size: 40px;
  font-family: poppins;
  font-weight: 700;
  color: #002e5b;
  letter-spacing: -.4px;
  margin: 0;
  position: relative;
}
.titlee1 > h3.sudo-bottom {padding-bottom: 20px;}
.titlee1 > .sudo-bottom:before, .title1.sudo-bottom:before {
    height: 6px;
    width: 35px;
}


/* Layout geral */
.containerr {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    flex-wrap: wrap;
}

/* Tabelas */
.table-container {
    flex: 1 1 45%; /* As tabelas vão ocupar 45% do espaço disponível */
    margin-bottom: 20px;
}

.placar-container {
    flex: 0 0 300px; /* O placar vai ter uma largura fixa de 300px */
    min-width: 300px;
    margin-top: 20px;
}

/* Estilos para o placar */
.placar-jogo {
    padding: 15px;
    background-color: #f9f9f9;
    border: 2px solid #ccc;  /* Borda inicial */
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: border-color 0.3s ease;  /* Transição suave para a borda */
    margin-bottom: 20px;
}

/* Efeito de mudança de cor da borda ao passar o mouse */
.placar-jogo:hover {
    border-color: #007bff;  /* Cor da borda ao passar o mouse */
}

/* Centraliza o título das rodadas */
.titulo-rodada {
    text-align: center;
    margin-bottom: 15px;
    font-size: 24px;
}

/* Alinha as informações de placar */
.placar-time {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.placar-time span {
    width: 33%;
    text-align: center;
}

.placar-central {
    font-size: 20px;
    font-weight: bold;
}

/* Diminui o espaçamento das informações de placar */
.placar-informacoes {
    font-size: 12px;
    line-height: 1.2;
    margin-top: 5px;
	text-align: center;
}

/* Separador horizontal */
hr {
    border: 0;
    border-top: 1px solid #ddd;
    margin: 10px 0;
}

/* Botões de navegação */
.flechas-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    position: relative; /* Faz as flechas ficarem abaixo do placar */
    width: 100%; /* Garante que as flechas ocuparam toda a largura disponível */
    margin-top: 30px; /* Distância para baixo do placar */
}

.placar-prev, .placar-next {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    margin: 0 10px;
}

.placar-prev:hover, .placar-next:hover {
    background-color: #0056b3;
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .placar-container {
        width: 100%;
        margin-top: 20px;
    }

    .table-container {
        width: 100%;
    }

    /* Ajustar o tamanho das flechas em telas pequenas */
    .placar-prev, .placar-next {
        font-size: 16px;
        padding: 8px;
    }

    .flechas-container {
        margin-top: 20px;  /* Ajuste do posicionamento das flechas */
    }
}

.estilo1 {
    margin: 0 0 0px;
}

/* Calendario


/* Estilo para centralizar o calendário e garantir responsividade 
body {
    background: #f4f4f4; /* Cor de fundo da página 
    display: flex; /* Usando flexbox para centralizar o conteúdo 
    justify-content: center; /* Centraliza na horizontal 
    align-items: center; /* Centraliza na vertical 
    min-height: 100vh; /* Garante que a altura mínima da página seja 100% da altura da tela
}

.ycontainer {
    width: 90%; /* Largura do calendário (90% da largura da tela) 
    max-width: 500px; /* Largura máxima de 500px col-lg-2
    text-align: center; /* Centraliza o texto dentro do container 
    border: 3px solid gray; /* Borda de 3px ao redor do calendário col-lg-2
    border-radius: 10px; /* Cantos arredondados col-lg-2
    padding: 20px; /* Espaçamento interno col-lg-2
    background: white; /* Cor de fundo do calendário col-lg-2
    position: relative; /* Necessário para posicionar outros elementos dentro col-lg-2
}

/* Responsividade: ajusta o calendário em telas menores col-lg-2
@media (max-width: 600px) {
    .ycontainer {
        max-width: 100%; /* Usar 100% da largura da tela col-lg-2
        padding: 15px; /* Menos espaçamento interno col-lg-2
    }
}

/* Cabeçalho do calendário col-lg-2
.yheader {
    display: flex; /* Flexbox para alinhar os elementos horizontalmente col-lg-2
    justify-content: space-between; /* Espaço entre os elementos col-lg-2
    align-items: center; /* Alinha os itens verticalmente ao centro col-lg-2
    font-size: 20px; /* Tamanho da fonte col-lg-2
    position: relative; /* Para posicionar elementos de forma relativa col-lg-2
    width: 100%; /* Largura total col-lg-2
}

/* Estilos para os elementos de mês e ano no cabeçalho col-lg-2
.yheader .ymonth, .yheader .yyear {
    flex: 1; /* Cada um ocupa 1 unidade de espaço col-lg-2
    text-align: center; /* Centraliza o texto col-lg-2
}

/* Estilos para o dropdown de seleção de mês e ano col-lg-2
.yselect {
    position: absolute; /* Posiciona os selects relativos ao container col-lg-2
    background: white; /* Cor de fundo branca col-lg-2
    border: 1px solid #ccc; /* Borda cinza col-lg-2
    display: none; /* Inicialmente escondido col-lg-2
    z-index: 10; /* Fica acima dos outros elementos col-lg-2
    width: 120px; /* Largura fixa col-lg-2
    border-radius: 5px; /* Cantos arredondados col-lg-2
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1); /* Sombra suave col-lg-2
    max-height: 150px; /* Altura máxima col-lg-2
    overflow-y: auto; /* Permite rolagem vertical col-lg-2
    left: 50%; /* Centraliza horizontalmente col-lg-2
    transform: translateX(-50%); /* Ajusta a posição col-lg-2
}

/* Estilos para os itens dentro dos selects col-lg-2
.yselect div {
    padding: 8px;
    cursor: pointer; /* Muda o cursor ao passar o mouse col-lg-2
    transition: background 0.3s; /* Transição suave para o fundo col-lg-2
}

.yselect div:hover {
    background: lightgray; /* Fundo ao passar o mouse col-lg-2
}

/* Estilos para os dias da semana e dias do mês col-lg-2
.yweekdays, .ydays {
    display: grid; /* Exibe os dias em formato de grid col-lg-2
    grid-template-columns: repeat(7, 1fr); /* 7 colunas, uma para cada dia da semana col-lg-2
    margin-top: 10px; /* Espaço acima col-lg-2
}

/* Estilo dos dias do mês col-lg-2
.yday {
    padding: 15px;
    background: #f0f0f0; /* Fundo claro col-lg-2
    cursor: pointer; /* Cursor como uma mãozinha col-lg-2
    border-radius: 5px; /* Cantos arredondados col-lg-2
    position: relative; /* Necessário para posicionar elementos internos col-lg-2
}

.yday.has-events {
    background-color: #ffeb3b; /* Fundo amarelo se houver evento col-lg-2
    font-weight: bold; /* Deixa o texto em negrito col-lg-2
}

/* Estilo do modal de eventos col-lg-2
.event-modal {
    display: none; /* Inicialmente escondido col-lg-2
    position: fixed; /* Fica fixo na tela col-lg-2
    top: 0; left: 0; /* Fica no topo da tela col-lg-2
    width: 100%; height: 100%; /* Ocupa toda a tela col-lg-2
    background-color: rgba(0, 0, 0, 0.5); /* Fundo semi-transparente col-lg-2
    justify-content: center; /* Centraliza o conteúdo col-lg-2
    align-items: center; /* Centraliza verticalmente col-lg-2
    z-index: 1000; /* Fica acima de outros elementos col-lg-2
}

.event-modal-content {
    background-color: white; /* Cor de fundo do conteúdo col-lg-2
    padding: 20px;
    border-radius: 8px; /* Cantos arredondados col-lg-2
    width: 300px;
    text-align: center; /* Centraliza o texto col-lg-2
    position: relative; /* Necessário para posicionar o botão de fechar col-lg-2
}

.event-modal-content h3 {
    margin-bottom: 15px;
}

.event-modal input, .event-modal textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc; /* Borda para os campos col-lg-2
    border-radius: 4px; /* Cantos arredondados col-lg-2
}

.event-modal button {
    padding: 10px;
    background-color: #28a745; /* Fundo verde col-lg-2
    color: white;
    border: none;
    border-radius: 4px; /* Cantos arredondados col-lg-2
    cursor: pointer;
}

.event-modal button:hover {
    background-color: #218838; /* Fundo mais escuro ao passar o mouse col-lg-2
}

.close {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
}

/* Estilo para a lista de eventos col-lg-2
.yevent-list-container {
    margin-top: 20px;
    text-align: center; /* Centraliza o texto da lista de eventos col-lg-2
}

.yevent-list-title {
    font-size: 18px;
    margin-bottom: 10px; /* Espaço abaixo do título col-lg-2
}
/* Fim Calendario*/


.gpi {
    float: left;
    padding: 0px 0;
    position: relative;
    width: 100%;
}

.serv-bx1.styl3 .serv-bx-inr > h4 {
    display: inline-block;
    max-width: 80%;
    font-size: 20px;
    line-height: 23px;
    font-weight: 700;
    color: #4f4444;
    margin-bottom: 13px;
}

.rmv-ext8 .serv-bx1 {
    margin-bottom: 30px;
}

.ylw-brd, .btn22.ylw-bg, .scrb-frm button.ylw-bg, .prtflo-bx4 > a:hover, .prtflo-bx4 > a:focus, .cnt-frm > form input.ylw-brd, .cnt-frm > form textarea.ylw-brd {
    border-color: #b3a95d;
}

.btn22 {
    border: 2px solid;
    color: #414141;
    font-weight: 700;
    font-family: open sans;
    letter-spacing: 0;
    font-size: 16px;
    display: inline-block;
    padding: 3px 15px 3px;
    text-align: center;
    width: 100%;
    background-color: #e9dd81;
    border-color: #fde428;
    margin-top: 10px;
}

.mrg65 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
}

.mt-40, .mb-40 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
}

.rmv-ext10 {
    padding: 0 !important;
    margin: 0 !important;
}

.testef {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 10px; /* Espaço fixo entre os blocos */
}

/* Remove excesso de margin/padding */
.destaque-bloco {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
}

.ajuste-padding {
    padding: 0 !important;
    margin: 0 !important;
}

.destaque-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 0;
    flex-direction: column;
    align-items: center;
}


.col-sm-@Model.Tamanho2 {
    padding: 0 !important;
    margin: 0 !important;
}
.input-group .form-control {
    position: relative;
    z-index: 0;
    float: left;
    width: 100%;
    margin-bottom: 0;
}
.input-group-btn:last-child>.btn, .input-group-btn:last-child>.btn-group {
    z-index: 0;
    margin-left: -1px;
}

.img-box,
.prtf-bx4,
.link-container {
    margin: 0 !important;
    padding: 0 !important;
    display: block;
}

img.img-link-uteis {
    display: block;
    margin: 0 !important;
    padding: 0 !important;
    vertical-align: top;
	border-radius: 10px;
}




.sd-wdgtt {
    border: 6px solid #bb9e9e;
    padding: 10px 10px 10px;
    -webkit-box-shadow: 0 12px 8px rgba(0, 0, 0, 0.04);
    -ms-box-shadow: 0 12px 8px rgba(0, 0, 0, 0.04);
    -o-box-shadow: 0 12px 8px rgba(0, 0, 0, 0.04);
    box-shadow: 0 12px 8px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.gpp {
    float: left;
    padding: 10px 0;
    position: relative;
    width: 100%;
}
.btmm-spc260, .gpp.btm-spc260 {
    padding-bottom: 20px;
}


.sd-wdgti {
  border: 1px solid #f1f1f1;
  padding: 50px 40px 40px;
  -webkit-box-shadow: 0 12px 8px rgba(0,0,0,0.04);
  -ms-box-shadow: 0 12px 8px rgba(0,0,0,0.04);
  -o-box-shadow: 0 12px 8px rgba(0,0,0,0.04);
  box-shadow: 0 12px 8px rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}
.sd-wdgti:before {
  content: "";
  -webkit-clip-path: polygon(88% 41%, 100% 100%, 100% 0%, 0% 0%, 57% 7%, 80% 18%, 83% 29%);
  background-color: #c3e0f1;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  height: 100px;
  width: 100%;
}
.sd-wdgti .lgo {margin-bottom: 23px;}
.sd-wdgti > p {
  font-size: 15px;
  color: #636363;
  line-height: 26px;
}
.sd-wdgti .cnt-inf-lst {margin-top: 10px;}
.sd-wdgti > a {
  display: inline-block;
  margin-top: 25px;
  color: #fff;
  font-size: 12px;
  font-family: montserrat;
  font-weight: 700;
  letter-spacing: 0;
  padding: 12px 32px;
}
.sd-wdgti > a:hover,
.sd-wdgti > a:focus {background-color: #333;}
.wdgti-tl.styl2 {
  border-bottom: 2px solid #f3f4f6;
  padding-bottom: 23px;
  font-size: 24px;
  color: #569fd5;
  letter-spacing: -.8px;
  font-weight: 700;
}
.sd-wdgti ul {margin-top: 10px;}
.sd-wdgti ul li {
  font-size: 15px;
  color: #8799a3;
  font-weight: 400;
  letter-spacing: 0;
  font-family: open sans;
  padding-bottom: 14px;
  border-bottom: 1px solid #eaeaea;
}
.sd-wdgti ul li + li {margin-top: 14px;}
.sd-wdgti ul li:last-child {
  border-bottom: 0;
  padding-bottom: 8px;
}
.sd-wdgti .mini-pst-thmb {width: 96px;}
.sd-wdgti .mini-pst + .mini-pst {margin-top: 0px;}
.sd-wdgti .mini-pst-inf > span {
  color: #bbc7cd;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0;
}
.sd-wdgti .mini-pst-inf > h5 {
  color: #252525;
  font-size: 16px;
  margin: 9px 0;
  font-weight: 600;
}
.sd-wdgti .mini-pst-inf > a {
  font-size: 13px;
  letter-spacing: 0;
}
.sd-wdgti .mini-pst-inf > a:hover,
.sd-wdgti .mini-pst-inf > a:focus {color: #333;}
.sd-wdgti > a.vw-al-btn {margin-top: 40px;}

.wdgti {
    float: left;
    margin-bottom: 50px;
    position: relative;
    width: 100%;
}
    .wdgti:last-child {
        margin-bottom: 20px;
        top: 20px;
    }
.wdgti .lgo {margin-bottom: 40px;}
.wdgti .lgo h1 {margin: 0;}
.wdgti p {
  font-size: 13px;
  line-height: 22px;
  letter-spacing: 0;
  margin-bottom: 0;
}


.wdgt:last-child {
    top: -15px;
    border-radius: 7px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.margin-bottom50 {
	margin-bottom: 50px;
}
.margin-bottom20 {
	margin-bottom: 20px;
}

.title1 > h3 {
    font-size: 25px;
    font-family: poppins;
    font-weight: 700;
    color: #002e5b;
    letter-spacing: -.4px;
    margin: 0;
    margin-right: auto;
}


a {
    color: #1b2c35;
}

.centeracessorestrito {
    display: flex;
    justify-content: center;

}


.rsnp-mnu > ul > li a,
.rsnp-mnu > ul > li p {
  color: inherit;
  display: block;
}

.branco2 {
    color: #ffffff;
}

.branco3 {
    color: aliceblue;
}

    .branco3:hover {
        color: #30ffeb; /* Nova cor quando passar o mouse */
    }

.margg {
    position: relative;
    padding: 3px;
    margin: 4px;
    
}

.social {
    width: 150% !important;
    float: left;
    text-align: center;
}

/* Ocultar os três pontinhos por padrão */
header nav ul ul li::after {
    display: none;
}

/* Exibir os três pontinhos apenas nos menus com submenu */
header nav ul ul li.has-submenu::after {
    content: ". . .";
    position: absolute;
    right: 20px;
    display: block;
    top: 13px;
}

/* Garante que os submenus abram corretamente */
header nav ul li.has-submenu > ul {
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    position: absolute;
    background: white;
    z-index: 1000;
    padding: 5px 0; /* Aumenta a área sensível para evitar sumiço */
    top: 100%; /* Ajusta para aparecer logo abaixo do menu principal */
    left: 0;
}

    /* Exibe o submenu corretamente ao passar o mouse */
    header nav ul li.has-submenu:hover > ul,
    header nav ul li.has-submenu > ul:hover {
        display: block;
        opacity: 1;
        visibility: visible;
    }

/* Garante que o submenu fique visível mesmo se o mouse sair rapidamente */
header nav ul li.has-submenu {
    position: relative;
     /* Aumenta a área sensível para evitar sumiço */
}

/* Ajuste para submenus dentro de submenus */
header nav ul ul li.has-submenu > ul {
    top: 0;
    left: 100%;
    margin-left: -5px; /* Reduz a margem para evitar espaços */
    padding: 5px 0; /* Aumenta a área sensível */
}

/* Garante que o submenu fique visível mesmo se o mouse sair rapidamente */
header nav ul ul li.has-submenu {
    position: relative;
    padding-right: 15px; /* Aumenta a área de ativação lateral */
}

    /* Mantém o submenu visível enquanto o mouse está sobre ele */
    header nav ul ul li.has-submenu:hover > ul,
    header nav ul ul li.has-submenu > ul:hover {
        display: block;
        opacity: 1;
        visibility: visible;
    }

/* Oculta submenus vazios */
header nav ul li:not(.has-submenu) > ul {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    pointer-events: none;
    overflow: hidden;
}


.hdr-srch-wrp {
    position: absolute;
    width: 700px;
    top: 200px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    z-index: 10000;
    display: none;
    padding: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
}

    /* Exibir a caixa corretamente ao clicar */
    .hdr-srch-wrp.ativo {
        display: block;
        opacity: 1;
        visibility: visible;
    }

.hdr-srch-wrp > form input {
    float: left;
    width: 100%;
    background-color: #f6f6f6;
    color: #999;
    font-size: 15px;
    font-style: italic;
    padding: 15px 30px;
	border-radius: 10px;
}

/* Botão "X" para fechar */
.hdr-srch-cls {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
    color: #333;
    z-index: 10001;
}

    .hdr-srch-cls:hover {
        color: red;
    }

/*body {
    padding-top: 182px; /* Ajuste conforme a altura do menu 
}*/

.brasao {
    height: 70px;
}
.brasao2 {
    height: 200px;
}
.scl1 {
    float: right;
    margin-right: 15px;
    padding: 15px;
}

.hdr-srch1 {
    float: right;
    padding: 17px;
}

.tpbr1 {
    float: left;
    width: 100%;
    height: 30px;
    background-color: #212c73;
    margin-bottom: 20px;
    padding: 1px;
}

.tpbr2 {
    float: left;
    width: 100%;
    height: 30px;
    background-color: #212c73;
    padding: 1px;
}

/* Reduzindo o brilho apenas para imagens do BannerSA.jpg */
.dark-banner {
    filter: brightness(110%);
}

.mtop {
    margin-top: 12px;
}

.cnt-inf-lst2 {
    display: flex;
    float: right;
    gap: 15px;
    width: 50%;
    justify-content: space-between;
}

.cnt-inf1 {
    float: left;
    margin-right: 1px;
    padding-left: 30px;
    position: relative;
    width: 33%;
    display: flex;
    align-items: center;
}
.gp {
    float: left;
    position: relative;
    padding: 10px;
    width: 100%;
}
.hdr-srch1 > a {
    font-size: 20px;
    color: #000000;
    margin-left: 22px;
}
.hdr-srch1 {
    float: right;
    padding: 1px;
}


.hdrr-srch-cls {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
    color: #333;
    z-index: 10001;
}

.hdrr-srch-cls {
    cursor: pointer;
    position: absolute;
    right: 30px;
    top: 34px;
    color: #333;
    font-size: 15px;
}

.navbar-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}
.navbar-header2 {
    display: flex;
    align-items: center;
    gap: 15px;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.brasao {
    height: 60px; /* Ajuste conforme necessário */
}

.titpreff {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.titpreff .sub-text {
    font-size: 18px;
    color: #e9ffff;
}

.titpreff .number {
    font-size: 24px;
    font-weight: bold;
    color: #8ebfff;
    margin: 0;
}

.cnt-inf1 > i {
    position: absolute;
    left: 0;
    font-size: 22px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.cnt-inf1 > p {
    font-size: 13px;
    color: #fff;
    letter-spacing: 0;
    line-height: 16px;
    margin-bottom: 0;
	margin-left: 10px;
}


.ls-spc, .gp.ls-spc {
    padding: 20px 0;
}


.nnws-bx1 {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Distribui os elementos para evitar tamanhos irregulares */
    align-items: center;
    text-align: center;
    width: 100%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    padding: 15px;
    margin-bottom: 12px;
}

.nnws-thmb img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Garante que todas as imagens preencham o espaço corretamente */
    border-radius: 10px;
}

.nnws-inf {
    width: 100%;
    text-align: center;
    flex-grow: 1; /* Mantém o conteúdo distribuído */
}

    .nnws-inf h4 {
        font-size: 1rem;
        font-weight: bold;
        margin-top: 10px;
    }

    .nnws-inf span {
        font-size: 0.9rem;
        color: #666;
        font-size: 15px;
    }

.nnws-thmb {
    width: 100%;
    height: 180px; /* Mantém um tamanho padrão para as imagens */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Evita imagens desproporcionais */
}

@media (max-width: 768px) {
    .nnws-bx1 {
        margin-bottom: 20px;
    }
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.nnwss-bx1 {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    width: 100%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    padding: 15px;
    margin-bottom: 12px;
    min-height: 320px;
}

/* Imagem no topo, proporcional */
.nnwss-thmb {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 10px;
}

    /* Preenchimento total do espaço da imagem */
    .nnwss-thmb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        border-radius: 10px;
    }

/* Informações abaixo da imagem */
.nnwss-inf {
    width: 100%;
    text-align: center;
    flex-grow: 1;
}

    .nnwss-inf h4 {
        font-size: 1rem;
        font-weight: bold;
        margin-top: 10px;
    }

    .nnwss-inf span {
        font-size: 15px;
        color: #666;
    }

@media (max-width: 768px) {
    .nnwss-bx1 {
        margin-bottom: 20px;
    }
}



.caixasiguais {
    overflow: hidden;
    height: 80px
}

.pgn-wrp {
    float: left;
    width: 100%;
    margin-top: 40px;
}


.pggn-wrp {
    float: left;
    width: 100%;
    margin-top: 30px;
    margin-bottom: 50px;
}

.background-image{
width: 328px;
height: 201.2269938650307px;
background-repeat: no-repeat;
background-position: center;
background-size: cover;
display: inline-block;
}


.fxd-bgi {

    background-size: cover !important;
}
.fxd-bgi, .prlx {
    height: 100%;
    width: 100%;
    margin: 0;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -2;
}

/*Previsão do tempo */
.prc-hdr > h5 {
    color: #000000;
    font-size: 22px;
    letter-spacing: 0;
    margin: 0 0 7px;
    font-weight: 700;
}

.prc-hdr > strong {
    font-size: 40px;
    color: #000000;
    letter-spacing: 0;
    float: left;
    margin-top: 15px;
    width: 100%;
}

.prc-bdy > li {
    float: left;
    width: 100%;
    color: #000000;
    font-size: 14px;
}


.prc-hdrr {
    float: left;
    width: 100%;
    margin-bottom: 50%;
}
.prc-hdrr > h5 {
    color: #000000;
    font-size: 22px;
    letter-spacing: 0;
    margin: 0 0 7px;
    font-weight: 700;
}
.prc-hdrr > span {
  float: left;
  width: 100%;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0;
}
.prc-hdrr > strong {
  font-size: 40px;
  color: #fff;
  letter-spacing: 0;
  float: left;
  margin-top: 15px;
  width: 100%;
}
.prc-hdrr > strong sup,
.prc-hdrr > strong small {font-size: 18px;}
.prc-hdrr > strong small {font-weight: 600;}

.prc-bx {
    float: left;
    padding: 30px;
    width: 100%;
    margin: 23px 0;
    position: relative;
    background-color: #bfbfff;
    min-height: 280px; /* altura mínima para manter o conteúdo visível */
    box-sizing: border-box;
}


.wdgt-tl.styl2 {
  border-bottom: 2px solid #f3f4f6 ;
  padding-bottom: 10px !important;
  font-size: 25px !important;
  font-family: poppins !important;
  font-weight: 700 !important;
  color: #252525;
  letter-spacing: -.8px !important;
}




.branco {
    color: #ffffff;
}

.sd-wdgt {
    padding: 50px 40px 40px;
    -webkit-box-shadow: 0 12px 8px rgba(0, 0, 0, 0.04);
    -ms-box-shadow: 0 12px 8px rgba(0, 0, 0, 0.04);
    -o-box-shadow: 0 12px 8px rgba(0, 0, 0, 0.04);
    box-shadow: 0 12px 8px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
}

.hstry-lst {
    float: left;
}

.title1 {
    float: left;
    width: 100%;
    margin-bottom: 6px;
}

.pckg-by.actv {
    background-color: #f5f5f5;
    -webkit-box-shadow: 0 8px 18px rgba(0, 0, 0, 0.13);
    -ms-box-shadow: 0 8px 18px rgba(0, 0, 0, 0.13);
    -o-box-shadow: 0 8px 18px rgba(0, 0, 0, 0.13);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.13);
    border-color: transparent;
    padding: 0px 0 0px;
    margin-top: 0;
    margin-bottom: 20px;
}

.pckg-plns {
    float: left;
    padding: 0 0px;
    width: 100%;
}

.menu3 > .drpdwn {
    left: auto;
    right: 0;
}

.menu3 > .drpdwn .menu-item-has-children > .drpdwn {
    left: auto;
    right: 100%;
    top: 0;
}


.no-padding {
    padding-left: 0px !important;
    padding-right: 0px !important;
}


.tipoimagem{
    width: 1000px;
    height: 100%;
}


.pckg-bx {
  float: left;
  width: 100%;
  position: relative;
  overflow: hidden;
  border: 2px solid #fafafa;
  padding: 50px 0 70px;
  margin-top: 30px;
  z-index: 1;
}
.pckg-hddr {
  float: left;
  width: 100%;
  padding-bottom: 14px;
  border-bottom: 1px solid #fafafa;
}
.pckg-bx:before {
  content: "";
  position: absolute;
  height: 200px;
  width: 100px;
  top: -40px;
  right: -62px;
  -webkit-transform: rotate(-20deg);
  -ms-transform: rotate(-20deg);
  -o-transform: rotate(-20deg);
  transform: rotate(-20deg);
  z-index: -1;
}
.pckg-hddr > h3 {
  font-weight: 800;
  color: #383838;
  letter-spacing: 0;
  font-size: 14px;
  margin: 0 0 5px;
}
.pckg-hddr > i {
  color: #383838;
  display: block;
  font-style: normal;
  font-size: 13px;
}
.pckg-hddr > span {
  font-size: 18px;
  color: #383838;
  letter-spacing: 0;
  display: block;
  margin-top: 15px;
}
.pckg-hddr > span strong {
  font-weight: 800;
  font-size: 30.85px;
}
.pckg-hddr > span strong sup {font-size: 18px;}
.pckg-bdy {
  float: left;
  padding: 0 15px;
  list-style: none;
  width: 100%;
  margin: 30px 0;
}
.pckg-bdy > li {
  float: left;
  width: 100%;
  font-size: 14px;
  color: #383838;
  letter-spacing: 0;
  padding: 15px 0;
  border-bottom: 2px dashed #fafafa;
  font-family: montserrat;
}
.pckg-bdy > li:last-child {border-bottom: 0;}
.pckg-bx > a {
  display: inline-block;
  color: #fff;
  padding: 13px 32px;
  background-color: #626262;
}
.pckg-bx.actv {
  background-color: #f5f5f5;
  -webkit-box-shadow: 0 8px 18px rgba(0,0,0,0.13);
  -ms-box-shadow: 0 8px 18px rgba(0,0,0,0.13);
  -o-box-shadow: 0 8px 18px rgba(0,0,0,0.13);
  box-shadow: 0 8px 18px rgba(0,0,0,0.13);
  border-color: transparent;
  padding: 75px 0 110px;
  margin-top: 0;
}
.pckg-bx.actv .pckg-hddr {border-bottom-color: #fff;}
.pckg-bx > a.grd-lyr2:hover {background-image: none;}

.wdgt-tl {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: .4px;
    margin: 0 0 10px;
}

.margintop {
    margin-top: 100px;
}




header.styl5 {
    padding: 0;
}


.ggpp {
    float: left;
    position: relative;
    padding: 0;
    width: 100%;
    margin-bottom: 50px;
}

.vdo-btn > i {
    line-height: 66px;
    width: 66px;
    color: #fff;
    font-size: 23px;
    display: inline-block;
    margin-bottom: 30px;
}

.alinhamentotexto {
    text-align: -webkit-center;
}

header.styl8 {
    background-color: #1c283947;
}



.hstry-dtl > h4 {
    color: #3e3e3e;
    font-weight: 900;
    letter-spacing: 0;
    font-size: 15px;
    margin: 0 0 3px;
}


/*===== Contact Sec =====*/
.grd-shpp {
    float: left;
    padding: 20px 20px 20px;
    position: relative;
    width: 100%;
    background-color: #fff;
    z-index: 1;
}

    .grd-shpp > h4 {
        font-size: 20px;
        font-weight: 800;
        color: #262626;
        letter-spacing: 0;
        margin: 0 0 0;
    }

    .grd-shpp > form {
        float: left;
        width: 100%;
    }

        .grd-shpp > form input,
        .grd-shpp > form textarea {
            float: left;
            width: 100%;
            margin-top: 10px;
            height: 40px;
            background-color: #f2f2f2;
            font-size: 12px;
            color: #2d2d2d;
            letter-spacing: 0;
            padding: 10px 15px;
            border: 1px solid #d8d8d8;
        }

        .grd-shpp > form textarea {
            height: 110px;
            padding-top: 15px;
        }

        .grd-shpp > form button {
            display: inline-block;
            font-family: montserrat;
            font-weight: 700;
            color: #fff;
            background-color: #424242;
            padding: 15px 50px;
            font-size: 11px;
            letter-spacing: .8px;
            margin-top: 50px;
        }

    .grd-shpp:before {
        content: "";
        position: absolute;
        top: 5px;
        right: 10px;
        bottom: 5px;
        left: 10px;
        background-color: #fff;
        -webkit-border-radius: inherit;
        border-radius: inherit;
        z-index: -1;
        -webkit-transform: skew(-2deg);
        -ms-transform: skew(-2deg);
        -o-transform: skew(-2deg);
        transform: skew(-2deg);
    }

.grd-shhp {
    float: left;
    padding: 50px 60px 50px;
    position: relative;
    width: 100%;
    background-color: #fff;
    z-index: 1;
}

    .grd-shhp > h4 {
        font-size: 22px;
        font-weight: 800;
        color: #262626;
        letter-spacing: 0;
        margin: 0 0 20px;
    }

    .grd-shhp > form {
        float: left;
        width: 100%;
    }

        .grd-shhp > form input,
        .grd-shhp > form textarea {
            float: left;
            width: 100%;
            margin-top: 10px;
            height: 40px;
            background-color: #f2f2f2;
            font-size: 12px;
            color: #2d2d2d;
            letter-spacing: 0;
            padding: 10px 15px;
            border: 1px solid #d8d8d8;
        }

        .grd-shhp > form textarea {
            height: 110px;
            padding-top: 15px;
        }

        .grd-shhp > form button {
            display: inline-block;
            font-family: montserrat;
            font-weight: 700;
            color: #fff;
            background-color: #424242;
            padding: 15px 50px;
            font-size: 11px;
            letter-spacing: .8px;
            margin-top: 50px;
        }

    .grd-shhp:before {
        content: "";
        position: absolute;
        top: 5px;
        right: 10px;
        bottom: 5px;
        left: 10px;
        background-color: #fff;
        -webkit-border-radius: inherit;
        border-radius: inherit;
        z-index: -1;
        -webkit-transform: skew(-2deg);
        -ms-transform: skew(-2deg);
        -o-transform: skew(-2deg);
        transform: skew(-2deg);
    }

.dropdown-menu > li > a {
    display: block;
    padding: 10px 20px;
    white-space: normal !important;
    overflow-wrap: break-word;
    width: 100%;
    max-width: 100%;
    clear: both;
    font-weight: 400;
    line-height: 1.42857143;
    color: #333;
}


.y-container {
    width: 100%; /* Altere para 100% para garantir que ocupe toda a largura disponível */
    max-width: none; /* Remove o limite de 80% */
    margin: 0 auto; /* Centraliza o conteúdo */
}
.y-fltr-btns {
    display: flex;
    flex-wrap: wrap; /* Permite que os itens quebrem linha */
    justify-content: center;
    gap: 15px;
    list-style: none;
    padding: 0;
}
        .y-fltr-btns li a {
            text-decoration: none;
            font-weight: bold;
            color: #000;
            padding: 5px 10px;
            border-bottom: 2px solid transparent;
            transition: 0.3s;
        }
        .y-fltr-btns li a:hover, .y-fltr-btns li a.y-active {
            border-bottom: 2px solid #f1c40f;
        }




.y-fltr-dta {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); /* Ajuste automático para colunas */
    gap: 20px;
    justify-content: center;
    width: 100%; /* Garante que ocupe toda a largura */
    margin: 20px auto;
    max-width: 100%; /* Ajuste para garantir que a largura não ultrapasse 100% */
}

.y-acesso-box {
    text-align: center;
}

.y-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

    .y-icon-circle i {
        font-size: 30px;
        color: white;
    }



.y-acesso-text {
    margin-top: 10px;
    font-size: 14px;
    font-weight: bold;
}

.ynews-card {
    padding: 15px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    height: 420px; /* altura fixa para alinhar todos os cards */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin: 10px;
    width: 270px; /* largura fixa para uniformidade */
    text-align: center;
}

.ynews-img {
    height: 180px;
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

/* Área interna com título, categoria, data */
.ynews-inf {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 4px;
    width: 100%;
}

    .ynews-inf h5 {
        font-size: 15px;
        font-weight: bold;
        color: #1e1e1e;
        margin: 0;
        height: 38px;
        line-height: 1.2;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2; /* Limita a 2 linhas */
        -webkit-box-orient: vertical;
    }

    .ynews-inf p {
        font-size: 13px;
        color: #000000;
        margin: 0;
        min-height: 34px;
        overflow: hidden;
    }

    .ynews-inf span {
        font-size: 13px;
        color: #000000;
    }

    /* Botão fixo no rodapé do card */
    .ynews-inf .btnn {
        margin-top: auto;
        padding: 8px 16px;
        font-weight: bold;
        font-size: 14px;
        background: #00dfff;
        color: #fff;
        border-radius: 6px;
        display: inline-block;
        text-decoration: none;
    }


.ynews-footer {
    margin-top: auto;
    display: flex;
    justify-content: center;
    width: 100%;
}

    .ynews-footer .btnn {
        padding: 8px 80px;
        font-weight: bold;
        font-size: 14px;
        background: #00dfff;
        color: #fff;
        border-radius: 6px;
        display: inline-block;
        text-decoration: none;
        transition: 0.3s;
    }

        .ynews-footer .btnn:hover {
            background-color: #00c4e5;
        }

.tm-car .owl-nav {
    position: absolute;
    top: 180px;
    left: -7%;
    right: -7%;
}


.blue1 {
    color: #fff;
    background-color: #00dfff;
}

.ylwb11 {
    color: #ffffff;
    background-color: #002952;
}

.ylwb11:hover,
.ylwb11:focus{
    color: #ffffff;
    background-color: #002952;
}

.text-center1 {
    text-align: -webkit-center;
}

.img-parceiro {
    width: 150px;
    height: auto;
    display: block;
    margin: 10px auto;
}

.titletempo {
    width: 100%;
}

.btn {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
}

    .btn .caret {
        margin-left: 12px;
    }

.tagclouds > a {
    border: 2px solid #f0f4f7;
    color: #06080a;
    font-size: 13px;
    letter-spacing: 0;
    float: left;
    margin: 10px 10px 0 0;
    padding: 7px 18px;
}

.acesso-rapido-box {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    align-items: stretch; /* uniformiza altura dos blocos */
}

.acesso-rapido-box > .col-md-1,
.acesso-rapido-box > .col-md-2,
.acesso-rapido-box > .col-md-3,
.acesso-rapido-box > .col-md-4,
.acesso-rapido-box > .col-md-6,
.acesso-rapido-box > .col-md-12 {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 15px;
    display: flex;            /* força o botão a ocupar altura total */
    align-items: stretch;
}

/* Estilo dos botões */
.acesso-rapido-box a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding: 12px 18px;
    border: 2px solid #f0f4f7;
    background-color: #fff;
    color: #06080a;
    font-size: 14px;
    text-decoration: none;
    border-radius: 25px;
    white-space: normal;
    word-break: break-word;
    transition: all 0.2s ease-in-out;
    width: 100%;
    height: 100%;
}

/* Ícone */
.acesso-rapido-box i {
    font-size: 18px;
    width: 20px;
    min-width: 20px;
    text-align: center;
    line-height: 1;
}

/* Texto */
.acesso-rapido-box span {
    white-space: normal !important;
    word-break: break-word;
    line-height: 1.2;
    display: inline-block;
}

/* Hover */
.acesso-rapido-box a:hover {
    background-color: #00b167;
    color: #fff;
    border-color: #00b167;
}

.acesso-rapido-box a:hover i,
.acesso-rapido-box a:hover span {
    color: #fff;
}






.azul {
    color: #5600f5;
}

.bordery {
    border: 2px solid #ddce31;
}


.margintop20 {
    margin-top: 20px;
}
.margintop40 {
    margin-top: 40px;
}

.bloco-previsao {
    margin-top: 30px; /* ou o valor necessário */
}
.bloco-informacoes {
    margin-top: 30px; /* ou o valor que desejar */
}


.D100 {
    width: 100%;
}

.paddigt {
    padding: 20px;
}

.fontt20 {
    font-size: 13px;
}
.margin100 {
    margin-left: 380px;
}

.top70 {
    top: 70%;
}
.page-header {
    padding-bottom: 9px;
    margin: 0 0 20px;
    border-bottom: 1px solid #eee;
}


.breadcrumb {
    background-color: transparent;
    color: #5900ff;
    padding: 0;
    display: inline-block;
    -webkit-border-radius: 0;
    border-radius: 0;
    margin: 2px;
    margin-left: 4px;
    width: 45%;
    margin-left: 12px;
}

.texto12 {
    background-color: transparent;
    padding: 0;
    display: inline-block;
    -webkit-border-radius: 0;
    border-radius: 0;
    margin: 2px;
    margin-left: 4px;
    width: 45%;
}



.texto55 {
    overflow: hidden; /* Garante que o texto não se sobreponha à imagem */
}


.topo-noticias-img {
    width: 100%;
    overflow: hidden;
}

.img-topo-noticias {
    width: 100%;          
    height: auto;         
    display: block;
    object-fit: cover;     
    object-position: center; 
}


.btn-warning {
    color: #fff;
    background-color: #bb9e9e;
    border-color: #bb9e9e;
}

.btn-warning:hover {
    background-color: #a87f7f; 
    border-color: #a87f7f;
    color: #fff; 
}

.fontteste {
    font-weight: 700;
    font-family: montserrat;
}



.img-fixed {
    width: 100% !important;
    height: 300px !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
}

.hvr4 .prtflo-inf > h5 {
    color: #fff;
    font-size: 20px;
    letter-spacing: .1px;
    font-weight: 800;
    margin: 0 0 15px;
}


.prtf-btns > a {
    display: inline-block;
    color: #080616;
    background-color: #ffffff;
    line-height: 50px;
    width: 50px;
    font-size: 12.75px;
    margin: 0 3px;
}

.vw-al img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px; /* você pode ajustar o valor conforme desejar */
}

.vw-al > a {
    display: inline-block;
    width: 100%;
    font-weight: 700;
    font-size: 17px;
}

@media (max-width: 480px) {
    .vw-al > a {
        padding: 0px 0px;
        font-size: 15px;
    }
}

.tamanhoimagemC {
    width: 100%;
}

.custom-carousel-container {
    position: relative;
    margin: 20px 0;
}

.custom-carousel .item {
    padding: 10px;
}

    .custom-carousel .item a {
        display: inline-block;
        background: #f1f1f1;
        border-radius: 20px;
        padding: 10px 15px;
        transition: transform 0.3s ease;
    }

        .custom-carousel .item a:hover {
            transform: scale(1.05);
        }

    .custom-carousel .item img {
        max-height: 80px;
        max-width: 100%;
        object-fit: cover;
    }
.custom-prev, .custom-next {
    font-size: 24px;
    color: #999;
    border: 1px solid #ccc;
    padding: 5px 10px;
    background: white;
    border-radius: 5px;
    cursor: pointer;
    user-select: none;
}


/* Container de navegação */
.custom-carousel-container {
    position: relative;
}

/* Estilo base das setas */
.custom-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.05);
}

    /* Ícones */
    .custom-nav span {
        font-size: 24px;
        color: #999;
        font-weight: bold;
    }

    /* Hover nas setas */
    .custom-nav:hover {
        border-color: #999;
        background-color: #f8f8f8;
    }

        .custom-nav:hover span {
            color: #555;
        }

/* Posicionamento lateral */
.custom-prev {
    left: -20px;
}

.custom-next {
    right: -20px;
}

.owl-carousel.custom-carousel {
    position: relative;
    padding: 0 40px;
}
.owl-carousel {
    display: none;
    z-index: 0 !important;
}

.botao2{
    display: inline-block;
    font-family: montserrat;
    font-weight: 700;
    color: #fff;
    background-color: #424242;
    padding: 15px 50px;
    font-size: 11px;
    letter-spacing: .8px;
    margin-top: 30px;
}
    .botao2:hover {
        background-color: #2c2c2c; /* mais escuro no hover, ou escolha outra cor */
        color: #42d3e5; /* cor do texto no hover – exemplo: amarelo */
        text-decoration: none; /* garante que não apareça sublinhado */
    }


.menu-tree {
    display: block;
    position: relative;
    margin-left: 15px;
    padding-left: 10px;
    background: none;
    border: none;
    box-shadow: none;
}

.chck-bx.styl2 [type="checkbox"]:not(:checked) + label {
    padding-left: 35px;
    line-height: 30px;
    font-weight: 400;
    font-size: 14px;
    color: #666;
    letter-spacing: 0;
    margin-right: 10px;
}

.cnt-frm > form button {
    float: none;
    display: inline-block;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    font-family: montserrat;
    letter-spacing: 1px;
    padding: 22px 60px;
}

.chck-bx input[type="radio"] {
    display: none;
}

.chck-bx label {
    position: relative;
    padding-left: 26px;
    margin-right: 10px;
    cursor: pointer;
    display: inline-block;
    line-height: 20px;
}

    .chck-bx label::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 20px;
        height: 20px;
        border: 2px solid #00a8c6;
        border-radius: 4px;
        background: #fff;
    }

.chck-bx input[type="radio"]:checked + label::before {
    background: #00a8c6;
    box-shadow: inset 0 0 0 4px white;
}

.prtf-inf > h3 {
    font-size: 18px;
    display: inline-block;
    max-width: 90%;
    font-weight: 800;
    color: #fff;
    margin: 33px 0 0;
}



ul.social {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap; /* opcional, para quebrar em tela pequena */
    gap: 1px; /* espaçamento entre os itens */
}

ul.social li {
    display: inline-block;
}

ul.social li a {
    display: inline-block;
    padding: 5px 10px;
    text-decoration: none;
}

.padding18 {
    padding: 18px;
}




/* Adicione no seu CSS */
.modo-contraste {
    background-color: #000 !important;
    color: #ffffff !important;
}
	.modo-contraste span {
        color: #ffffff !important;
    }
    .modo-contraste a {
        color: #ffffff !important;
    }
    .modo-contraste p {
        color: #ffffff !important;
    }
    .modo-contraste h3 {
        color: #ffffff !important;
    }
    .modo-contraste h2 {
        color: #ffffff !important;
    }
    .modo-contraste h4 {
        color: #fafafa !important;
    }
	.modo-contraste h5{
		color: #ffffff !important;
	}
    .modo-contraste h6 {
        color: #ffffff !important;
    }
	.modo-contraste .pckg-hdr > i {
        color: #ffffff !important;
    }
	.modo-contraste .pckg-by {
		background-color: #737171 !important;
	}
	.modo-contraste .ynews-card {
		background-color: #636363 !important;
	}
	.modo-contraste .sd-wdgti {
		background-color: #636363 !important;
	}
	.modo-contraste .sd-wdgt {
		background-color: #636363 !important;
	}
	.modo-contraste .acesso-rapido-box a{
		background-color: #636363 !important;
	}
	.modo-contraste .nnwss-bx1{
		background-color: #636363 !important;
	}
	.modo-contraste .tempo-card{
		background-color: #636363 !important;
	}
	.modo-contraste .acx-item{
		background-color: #636363 !important;
	}
	.modo-contraste .acx-vertical-item{
		background-color: #636363 !important;
	}
	.modo-contraste .header-top {
		background-color: #777777 !important;
	    color: #ffffff !important;
	}
	.modo-contraste .noticia-card {
		background-color: #777777 !important;
	    color: #ffffff !important;
	}
	.modo-contraste .noticia-boxx {
		background-color: #777777 !important;
	    color: #ffffff !important;
	}
	.modo-contraste .noticia-box {
		background-color: #777777 !important;
	    color: #ffffff !important;
	}
	.modo-contraste .titulo-rede {
	    color: #ffffff !important;
	}
	.modo-contraste .fundo {
		background-color: #777777 !important;
	}
	.modo-contraste .newsletter-left {
	    background-color: #353535 !important;
	}
	.modo-contraste .newsletter-right  {
	    background-color: #494949  !important;
	}
	.modo-contraste .acx5-titulo-esquerda  {
		color: #ffffff !important;
	}
	.modo-contraste .voce-sabia-card  {
	    background-color: #353535 !important;
	}
	.modo-contraste .cnt-inf1 > p  {
		color: #000000 !important;
	}
	.modo-contraste .titpreff .sub-text  {
		color: #000000 !important;
	}

.teste {
    margin-top: 200px;
}


.lgo.lgo1.navbar-brand {
    background: #333; /* preto */
    padding: 10px 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.my-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
}

.my-brasao {
    width: 50px;
    height: auto;
    margin-right: 10px;
}

.my-titpreff {
    display: flex;
    flex-direction: column;
    color: white;
    line-height: 1.1;
}

.my-sub-text {
    font-size: 14px;
    margin-bottom: 2px;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.my-title {
    font-size: 20px;
    margin: 0;
}

.navbar-toggle {
    background: none;
    border: none;
    color: white;
    margin: 10px 0;
}

/* Esconde o botão no desktop */
@media (min-width: 768px) {
    .navbar-toggle {
        display: none;
    }
}
.textoazulclaro {
    color: #abd1f7;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

[vw-access-button] {
    top: 60% !important;
}

.hvr5 {
    position: relative;
    overflow: hidden;
    display: block;
    border-radius: 8px;
}

    .hvr5::before,
    .hvr5::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        width: 0;
        background-color: rgb(0 0 0 / 50%); /* cor da sombra */
        z-index: 2;
        transition: all 0.4s ease-in-out;
        pointer-events: none;
    }

    .hvr5::before {
        left: 0;
    }

    .hvr5::after {
        right: 0;
    }

    .hvr5:hover::before,
    .hvr5:hover::after {
        width: 50%;
    }


.prtflo-inf a.branco2:hover {
    color: #7dffec !important; /* ou qualquer cor desejada */
}

.prtflo-inf a:hover {
    background-color: transparent !important;
}
.prtflo-bx4:hover img {
    opacity: 0.3;
    transition: opacity 0.3s ease;
   
}

.hvr4 .prtflo-inf > span > a {
    width: auto;
    display: inline-block;
    line-height: initial;
    color: rgb(255 255 255);
    font-size: 13px;
    margin: 0;
    font-family: montserrat;
}


/* Estilo base para o carrossel de .tm-car */
.tm-car .owl-nav > div {
    position: absolute;
    border: 3px solid #d7d7d7;
    color: #d7d7d7;
    font-size: 15px;
    width: 45px;
    text-align: center;
    line-height: 39px;
}

    /* Posicionamento das setas esquerda e direita */
    .tm-car .owl-nav > div.owl-prev {
        left: 0;
    }

    .tm-car .owl-nav > div.owl-next {
        right: 0;
    }

    /* Hover nas setas (normalmente quando estão visíveis) */
    .tm-car .owl-nav > div:hover {
        border-color: #002e5b;
        background-color: #002e5b;
        color: #fff;
    }


.y-list-acesso {
    list-style: none;
    padding: 0;
    margin: 0;
}

.y-item-acesso {
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    transition: background 0.3s, transform 0.2s;
}

.y-link-acesso {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.y-icon-acesso {
    margin-right: 10px;
    font-size: 18px;
    color: #007bff;
}

.y-text-acesso {
    flex-grow: 1;
}

.y-item-acesso:hover {
    background-color: #eef6ff;
    transform: translateY(-2px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.fonte40 {
	font-size: 40px;
}

.text-align-left {
	text-align: left;
}


.hvr5:hover:before, 
.hvr5:hover:after {
  opacity: .4;
  width: 50%;
  border-radius: 10px;
}





/*Teste*/

.noticias-header {
    background-color: #002952;
    padding: 30px 0;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}


    .noticias-header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .noticias-header h1 {
        margin-left: 0;
        flex: 1;
        text-align: left;
        color: #fff;
    }


.breadcrumb-2 {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    text-transform: uppercase;
    color: #f8f8f8;
    white-space: nowrap;
}

    .breadcrumb-2 .breadcrumb {
        background: transparent;
        padding: 0;
        margin: 0;
        list-style: none;
        display: flex;
        gap: 6px;
        flex-wrap: nowrap;
    }

        .breadcrumb-2 .breadcrumb li {
            display: inline;
            color: #fff;
            opacity: 0.9;
        }

            .breadcrumb-2 .breadcrumb li:not(:last-child)::after {
                content: "/";
                margin: 0 6px;
                color: #eee;
            }

            .breadcrumb-2 .breadcrumb li a {
                color: #fff;
                font-weight: bold;
                text-decoration: none;
            }

            .breadcrumb-2 .breadcrumb li.active {
                color: #f0f0f0;
                font-weight: normal;
            }

.hstry-feat-pstt {
    float: left;
    width: 40%;
    margin-right: 30px;
}

.imagem123 {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin-bottom: 20px;
}




html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1 0 auto; /* Faz o conteúdo crescer e ocupar o espaço disponível */
}

footer, .btm-br {
    flex-shrink: 0; /* Garante que o footer não seja encolhido */
}

.custom-dropdown {
    display: block;
    width: 100%;
    white-space: normal;
    overflow-wrap: break-word;
    text-align: center;
    line-height: 2.3;
}

.custom-dropdown:hover,
.custom-dropdown:focus {
    background-color: #0a56a2;
    outline: none;
}

.custom-dropdown-menu {
    width: 100%;
    background-color: #ffffff;
	color: #002952;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-top: 5px;
    padding: 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    max-height: 250px;
    overflow-y: auto;
}

.custom-dropdown-menu > li > a {
    padding: 10px 15px;
    color: #333;
    display: block;
    text-decoration: none;
    font-weight: normal;
    transition: background-color 0.2s ease;
}

.custom-dropdown-menu > li > a:hover {
    background-color: #002952 !important;
    color: #ffffff  !important;
}


.caixa-subportal {
    background-color: #f1f5f7;
    padding: 20px;
    border-radius: 10px;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-in-out;
	
}

.caixa-subportal:hover {
    transform: scale(1.02);
}

.link-subportal {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #333;
    text-align: left;
    width: 100%;
}

.icon-subportal {
    font-size: 20px;
    min-width: 25px;
}

.texto-subportal {
    font-weight: 600;
    font-size: 15px;
    line-height: 20px;
    word-break: break-word;
}






/* Rodapé da Prefeitura */
.footer-prefeitura {
    padding: 15px 0;
}

.footer-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0px;
    margin-right: 98px;
}

/* Logo da prefeitura */
.footer-wrapper .lgo1 img {
    height: 45px;
    width: auto;
}

.footer-wrapper .titpreff {
    margin-left: 10px;
}

.footer-wrapper .titpreff .sub-text {
    font-size: 13px;
    color: #ffffff;
    display: block;
    margin-bottom: 2px;
}

.footer-wrapper .titpreff h1 {
    font-size: 18px;
    color: #76aaff;
    margin: 0;
}

/* Bloco de informações centralizado */
.footer-infos {
    text-align: center;
    font-size: 13px;
    color: #ccc;
    line-height: 1.4;
    margin: 0 auto; /* centraliza horizontalmente */
   
}

.footer-infos p {
    margin: 2px 0;
    color: #ccc;
}

.footer-infos .fw-bold {
    font-weight: bold;
}

.footer-infos a {
    display: inline-block;
    margin-top: 4px;
    color: #22c2b0;
    text-decoration: none;
    font-size: 13px;
}

.footer-infos a:hover {
    text-decoration: underline;
}

/* Responsivo */
@media (max-width: 768px) {
    .footer-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .footer-infos {
        margin-top: 10px;
        text-align: center;
    }

    .footer-wrapper .titpreff {
        margin-left: 0;
        margin-top: 8px;
    }
}





/* Rodapé da Abase */
.footer-sec-abase {
    padding: 15px 0 10px 0;
    background-color: #111;
}

.footer-sec-abase .container {
    padding: 0px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-sec-abase .abase-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-width: 100px;
    max-width: 150px;
}

.footer-sec-abase .abase-logo img {
    height: 38px;
    object-fit: contain;
    margin-left: 5px;
}

.footer-sec-abase .abase-info {
    flex: 1;
    text-align: center;
    font-size: 13px;
}

.footer-sec-abase .abase-info p {
    margin: 2px 0;
    color: #ccc;
    line-height: 1.4;
}

.footer-sec-abase .abase-info a {
    color: #22c2b0;
    text-decoration: none;
    font-size: 13px;
}

.footer-sec-abase .abase-info a:hover {
    text-decoration: underline;
}

/* Responsivo */
@media (max-width: 768px) {
    .footer-wrapper {
        flex-direction: column !important;
        align-items: center !important;
		margin-right: 0px !important;
    }

    .footer-sec-abase .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 10px 0;
    }

    .footer-sec-abase .abase-logo {
        justify-content: center;
        margin-bottom: 10px;
    }

    .footer-sec-abase .abase-logo img {
        height: 32px;
    }

    .footer-sec-abase .abase-info {
        width: 100%;
        padding: 5px 10px;
    }

    .footer-p,
    .footer-infos a,
    .footer-infos span {
        font-size: 12px;
    }
	.cnt-frm > form button {
    margin-bottom: 20px;
}
}



/* Acesso Rápido 2 */

:root {
    --acx-bg-color: #1e1e1e;
    --acx-icon-color: #22c2b0;
    --acx-title-color: #ffffff;
    --acx-hover-bg: #292929;
}

/* Tema azul */
.tema-azul {
    --acx-bg-color: #002952;
    --acx-icon-color: #00baff;
    --acx-title-color: #ffffff;
    --acx-hover-bg: #005d2a;
}

/* Estrutura geral */
.acx-wrapper {
    display: flex;
    justify-content: center;
    padding: 20px 0;
    width: 100%;
}

.acx-container {
    width: 100%;
    max-width: 1200px;
    padding: 0 15px;
}

/* Lista de itens */
.acx-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-left: -6px; /* compensação para padding interno */
    margin-right: -6px;
	justify-content: center;
}

/* Item individual */
.acx-item {
    padding: 0 6px; /* espaçamento horizontal entre colunas */
    margin-bottom: 16px; /* espaçamento vertical entre linhas */
}

.acx-item > div, /* Se estiver usando div interna */
.acx-link {
    background: var(--acx-bg-color);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 16px 12px;
    text-decoration: none;
    color: var(--acx-title-color);
}

/* Hover do item */
.acx-item:hover > div,
.acx-link:hover {
	animation: float 0.2s ease-in-out infinite alternate;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
    background: var(--acx-hover-bg);
}
@keyframes float {
    from { transform: translateY(-10px); }
    to { transform: translateY(-10px) rotate(3deg); }
}

/* Ícone */
.acx-link i {
    font-size: 26px;
    margin-bottom: 8px;
    color: var(--acx-icon-color);
    transition: transform 0.3s, color 0.3s;
}

.acx-link:hover i {
    transform: scale(1.1);
}





/* Título */
.acx-link h3 {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    color: var(--acx-title-color);
    word-break: break-word;
}


.vw-al {
	margin-bottom: 20px;
}



.box-redes-sociais.facebook {
    margin-bottom: 40px;
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.08);
}

.titulo-rede {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #222;
    border-left: 5px solid #3b5998; /* azul do Facebook */
    padding-left: 10px;
}

.titulo-rede span {
    color: #3b5998;
    margin-right: 5px;
}


.titulo-redeeY {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #222;
    border-left: 5px solid #ff0000;
    padding-left: 10px;
}

.titulo-redeeY span {
    color: #ff0000;
    margin-right: 5px;
}

/* Banner: largura total do container, altura fixa, imagem responsiva */
.youtube-banner img {
    width: 100%;
    max-height: 180px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 10px;
}

/* Container dos iframes */
.youtube-container iframe {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

/* Vídeo grande - deixa um pouco maior */
.grande-video iframe {
    height: 300px; /* já definido inline, mas reforça */
}

/* Container para os 3 vídeos pequenos lado a lado */
.videos-pequenos {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

/* Cada vídeo pequeno ocupa 1/3 da largura */
.pequeno-video {
    flex: 1 1 0;
    max-width: calc((100% / 3) - 10px);
}

/* Altura do iframe dos vídeos pequenos */
.pequeno-video iframe {
    height: 180px;
}

/* Responsividade: empilha os vídeos pequenos em telas menores */
@media (max-width: 767px) {
    .videos-pequenos {
        flex-direction: column;
    }
    .pequeno-video {
        max-width: 100%;
        margin-bottom: 15px;
    }
}


/* Acesso Rápido com banner (versão 2) */
.acx4-wrapper {
    display: flex;
    justify-content: center;
    padding: 0;
    width: 100%;
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover; /* <<< ALTERADO */
    /*min-height: 500px; ou ajuste conforme imagem */
    margin-bottom: 20px;
    align-items: center;
	background-color: #713d17;
}

.imagemflex {
	display: flex;
    justify-content: center;
    padding: 40px 0;
}


.acx4-container {
    width: 100%;
    max-width: 1280px;
    padding: 0 15px;
}

.acx4-title {
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 24px;
}

.acx4-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* gap: 12px;  <-- remova e use espaçamento controlado na largura */
}

.acx4-item {
    flex: 0 0 200px; /* fixa exatamente 200px */
    max-width: 200px;
    padding: 5px;    /* pequeno espaçamento entre eles */
    box-sizing: border-box;
}

.acx4-link {
    background: rgba(0, 45, 90, 0.85);
    border-radius: 12px;
    padding: 20px 16px;
    display: flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    border: 1px solid #0077cc;
    height: 60px;
    width: 100%; /* agora ocupa todo o espaço do item */
    box-sizing: border-box;
}


.banner-bg {
    filter: brightness(100%);
}



.acx4-link:hover {
    background: #005da3;
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
}

.acx4-link i {
    display: inline-flex;          /* Ou use 'flex' se estiver em bloco */
    align-items: center;
    justify-content: center;
    width: 32px;                   /* Largura fixa */
    height: 32px;                  /* Altura fixa */
    font-size: 20px;               /* Tamanho real do ícone (ajuste conforme necessário) */
    color: #00cfff;
    transition: transform 0.3s;
    margin-right: 10px;
}


.acx4-link:hover i {
    transform: scale(1.2);
}

.acx4-link h3 {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    color: #fff;
}


.acx5-wrapper {
    width: 100%;
}

.acx5-container {
    width: 100%;
}

.acx5-item-large {
    background: #fff;
    padding: 10px;
    margin-bottom: 20px; 
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 194px;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
	border-radius: 10px;
}

.acx5-item-large:hover {
    /* Movimento suave para frente + leve aumento */
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    cursor: pointer;
}

.acx5-item-large img {
    width: 90%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px; /* opcional, se quiser arredondar a imagem também */
}

.acx5-list-small {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* controla espaçamento entre itens */
}

.acx5-item-small {
    width: calc(50% - 7.5px); /* 50% menos metade do gap */
    background: #fff;
    padding: 10px;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (max-width: 767px) {
	.acx5-item-small {
		width: calc(50% - 7.5px);
	}
}
@media (max-width: 425px) {
	.acx5-item-small {
		width: calc(100% - 7.5px);
	}
}

.acx5-item-small:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.acx5-item-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.acx5-link {
    display: block;
    width: 100%;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.acx5-titulo-linha {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    font-family: 'Open Sans', sans-serif;
    margin-top: 10px;
    gap: 10px;
}

.acx5-linha-flexivel {
    flex-grow: 1;
    height: 1px;
    background-color: #bcbcbc;
    margin: 0 10px;
}


.acx5-titulo-esquerda {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 600;
    color: #1d1d1d;
    padding-right: 10px;
}

.barra-lateral {
    width: 5px;
    height: 20px;
    background-color: #f4a024;
}

.acx5-titulo-direita {
    font-size: 13px;
    font-weight: 500;
    padding-left: 10px;
}

.ver-todos {
    text-decoration: none;
    color: #f28c00;
    transition: color 0.3s ease;
}

.ver-todos:hover {
    color: #c76b00;
}

.seta-direita {
    color: #f28c00;
    margin-left: 4px;
    font-size: 14px;
}


.acx5-list-ssmall {
    display: flex;
    flex-wrap: wrap;
    gap: 15px; /* controla espaçamento entre itens */
}

.acx5-item-ssmall {
    width: calc(33% - 7.5px);
    background: #fff;
    padding: 10px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (max-width: 767px) {
	.acx5-item-ssmall {
		width: calc(50% - 7.5px);
	}
}
@media (max-width: 425px) {
	.acx5-item-ssmall {
		width: calc(100% - 7.5px);
	}
}

.acx5-item-ssmall:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.acx5-item-ssmall img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.acx2-wrapper {
    display: flex;
    justify-content: center;
    padding: 20px 0;
    width: 100%;
}

.acx2-container {
    width: 100%;
    max-width: 1200px;
    padding: 0 15px;
}

.acx2-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
}

.acx2-item {
    padding: 10px;
}

.acx2-inner {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #dcdcdc;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.acx2-inner:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.acx2-link {
    display: block;
    width: 100%;
    height: 100px;
    text-align: center;
    padding: 10px;
}

.acx2-link img {
    width: 100%;
    max-height: 100%;
    object-fit: contain;
	border-radius: 8px;
}


/*acesso rapido 4*/

/* Wrapper da lista em formato vertical */
.acx-vertical-wrapper {
    justify-content: center;
}

/* Lista vertical de acessos */
.acx-vertical-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Item da lista */
.acx-vertical-item {
    position: relative;
    background: #1e1e1e;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    align-items: center;
    padding: 16px 20px;
    border-left: 10px solid #22c2b0; /* Faixa à esquerda */
}

.acx-vertical-item:hover {
    transform: translateX(6px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Ícone */
.acx-vertical-item i {
    font-size: 22px;
    color: #22c2b0;
    margin-right: 14px;
    min-width: 28px;
    text-align: center;
}

/* Texto */
.acx-vertical-item h3 {
    font-size: 15px;
    font-weight: bold;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}


/* Caixa de submenus (nível 1 e 2) */
.styl8-menu .styl8-dropdown,
.styl8-menu .styl8-submenu-list {
    background-color: #ffffff !important
    border-radius: 8px;
    padding: 10px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    min-width: 200px;
    z-index: 1000;
	border-radius: 10px;
}

/* Itens dos submenus */
.styl8-menu .styl8-dropdown li a,
.styl8-menu .styl8-submenu-list li a {
    color: #000000 !important;
    padding: 10px 20px;
    display: block;
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 500;
    white-space: nowrap;
    background-color: transparent !important;
	white-space: normal !important; /* permite quebra de linha normal */
	word-wrap: break-word;          /* quebra palavras grandes se necessário */
	overflow-wrap: break-word;  
}

/* Hover elegante */
.styl8-menu .styl8-dropdown li a:hover,
.styl8-menu .styl8-submenu-list li a:hover {
    background-color: #002952 !important;
    color: #ffffff !important;
    border-radius: 5px;
}

/* Sub-submenu (filho do submenu) */
.styl8-submenu {
    position: relative; /* necessário para o submenu filho */
}

.styl8-submenu > .styl8-submenu-list {
    position: absolute;
    top: 0;
    left: 100%; /* alinhado ao lado direito */
    display: none;
    margin-left: 0;
    padding-left: 0;
    z-index: 1001; /* sobrepõe ao pai sem conflito */
}

/* Mostrar corretamente quando passa o mouse */
.styl8-menu-item:hover > .styl8-dropdown,
.styl8-submenu:hover > .styl8-submenu-list {
    display: block;
}

/* ===== CORREÇÃO DE SUBMENUS QUE ULTRAPASSAM A TELA ===== */

/* Submenu filho padrão: abre à direita */
.styl8-submenu > .styl8-submenu-list {
    left: 100%;
    right: auto;
    transition: all 0.25s ease-in-out;
}

/* Quando precisar inverter o lado (abrir para esquerda) */
.styl8-submenu > .styl8-submenu-list.inverte-lado {
    left: auto !important;
    right: 100% !important;
}

/* Opcional: efeito leve de fade-in quando o submenu aparece */
.styl8-submenu > .styl8-submenu-list {
    opacity: 0;
    transform: translateY(-5px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.styl8-submenu:hover > .styl8-submenu-list {
    opacity: 1;
    transform: translateY(0);
}


.colordata {
	color: #002e5b;
}

.btn-primary {
    color: #fff;
    background-color: #337ab7;
    border-color: #2e6da4
}

.btn-primary:hover {
    color: #fff;
    background-color: #286090;
    border-color: #204d74
}
.botaopagina {
    z-index: 3;
    color: #fff;
    cursor: default;
    background-color: #337ab7;
    border-color: #337ab7;
}

.video-container {
    text-align: center;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
	padding: 5px !important;
}

.video-container img {
    width: 100%;
    height: 250px; /* ajuste conforme o layout */
    object-fit: cover; /* mantém o enquadramento correto */
    border-radius: 10px; /* opcional: deixa as bordas arredondadas */
    transition: transform 0.3s ease;
}

.video-container img:hover {
    transform: scale(1.03); /* leve zoom no hover */
}


.video-title {
    font-size: 25px;
    font-family: poppins;
    font-weight: 700;
    color: #003366;
    margin-bottom: 15px;
    letter-spacing: 1px;
}


.video-wrapper {
    position: relative;
    padding-bottom: 63%;
    padding-top: 25px;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.hvr3 {
    float: left;
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.preto1 {
	color: #000000 !important;
}


.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    flex-wrap: wrap;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-box {
    background-color: #fff;
    border-radius: 50px;
    padding: 8px 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.social-box a {
    color: #000;
    font-size: 18px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-box a:hover {
    color: #1d70b7;
    transform: scale(1.1);
}


.rspn-mnu-cls-x {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 36px;
    cursor: pointer;
    margin: 30px auto 10px auto; /* reduzido para evitar ultrapassar a área */
    display: block;
    transition: transform 0.2s ease;
    position: relative;
    z-index: 10;
}

.rspn-mnu-cls-x:hover {
    transform: scale(1.2);
    color: #8b4513; /* ou outro tom para hover */
}



.rspn-mnu-btn {
    background-color: #767676;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    height: 45px;
    line-height: 45px;
    position: fixed;
    right: 0;
    text-align: center;
    top: 10%;
    left: 90%;
    width: 45px;
}

.menu-principal {
    max-height: none !important;
    overflow: visible !important;
}

.rsnp-mnu > ul {
    display: inline-block;
    list-style: outside none none;
    margin-bottom: 0;
    padding-left: 0;
    overflow-y: auto !important;
    height: auto;
    width: 100% !important;
    max-height: none;
    overflow: visible;
}

.rspn-topo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
}



.styl8-dropdown {
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 999;
}

.styl8-dropdown.open-left {
    right: 0;
    left: auto;
}
.styl8-submenu > ul.styl8-submenu-list {
    position: absolute;
    top: 0;
    left: 100%;
    z-index: 999;
    min-width: 200px;
}

.styl8-submenu.open-left > ul.styl8-submenu-list {
    left: auto;
    right: 100%; /* abre para o lado esquerdo */
}

.rsnp-mnu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    width: 100vw;
    height: 100vh;
    background-color: #111;

    overflow-y: scroll !important;        /* força rolagem mesmo oculta */
    -webkit-overflow-scrolling: touch;    /* rolagem suave iOS */
    overscroll-behavior: contain;         /* impede rolagem do fundo */
	touch-action: pan-y;
}
.rsnp-mnu {
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.rsnp-mnu .menu-principal {
  overflow: visible !important;
  max-height: none !important;
  list-style: none;
  padding: 0;
  margin: 0;
}


.rsnp-mnu * {
    touch-action: pan-y;
}

/* Impede o fundo de rolar quando o menu está aberto */
body.menu-aberto {
    overflow: hidden !important;
    height: 100vh;
}


/* Quando o menu está ativo (visível) */
.rsnp-mnu.ativo {
    transform: translateX(0);
}


/* Cabeçalho do menu (logo, botão, etc.) */
.rspn-hdr {
    position: relative;
    z-index: 100000;
}

/* Botão do menu (ícone hamburguer) */
.rspn-mnu-btn {
    color: #fff;
    font-size: 22px;
    cursor: pointer;
}

/* Botão para fechar o menu (ícone X) */
.rspn-mnu-cls-x {
    background: none;
    border: none;
    color: #fff;
    font-size: 26px;
    cursor: pointer;
    margin-top: 15px;
}


/* Itens principais do menu */
.menu-principal {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mbl-menu-item {
    margin-bottom: 10px;
}

/* Links principais */
.mbl-menu-item > .mbl-link {
    display: block;
    color: white;
    font-weight: bold;
    padding: 10px 0;
    text-decoration: none;
}

/* Submenu de primeiro nível */
.mbl-dropdown {
    display: none;
    padding-left: 15px;
}

/* Submenu ativo */
.mbl-submenu.ativo > .mbl-dropdown {
    display: block;
}

/* Sub-submenu (filhos dos filhos) */
.mbl-submenu-list {
    display: none;
    padding-left: 20px;
}

/* Submenu pai e filho */
.mbl-submenu > a {
    display: block;
    padding: 5px 10px;
    color: #aaa;
    text-decoration: none;
}

/* Pequeno ajuste para evitar scroll lateral */
html, body {
    overflow-x: hidden;
}

/* Container da imagem */
.hstry-ffeat-pstt {
    float: left;
    width: 100%; /* ou ajuste para 60%, 70% conforme o layout desejado */
    margin-right: 30px;
    position: relative;
}

/* Navegação do Owl Carousel, se estiver sendo usada */
.hstry-ffeat .owl-nav {
    position: absolute;
    top: 160px;
    left: 110px;
}

/* Container principal de destaque */
.hstry-ffeat {
    float: left;
    margin-bottom: 25px;
    width: 100%; /* Pode ajustar para 400px se for layout fixo */
}

/* Estilo da imagem principal */
.hstry-ffeat-pstt img {
    width: 100%;             /* Ocupa toda a largura do container */
    max-width: none;         /* Sem limite fixo de largura */
    height: auto;
    display: block;
    border-radius: 8px;
    margin-bottom: 20px;
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
    padding: 0;              /* Remove espaçamentos desnecessários */
}

/* Efeitos de clique, se for usado JS */
.hstry-ffeat-pstt img.expanded {
    transform: scale(1.5);
}

.hstry-ffeat-pstt img.super-expanded {
    transform: scale(2.5);
}

/* Classe adicional usada se for necessário direto na imagem */
.imagem12345 {
    width: 100%;
    max-width: none;
    height: auto;
    display: block;
    border-radius: 8px;
    margin-bottom: 20px;
}


.acesso-rapido-bloco {
    margin-top: 40px; /* Ajuste esse valor se quiser mais ou menos espaço */
}

.y-fltr-dtaa {
    gap: 20px;
    justify-content: center;
}




.y-acesso-box .pckg-by {
    height: 110px; /* Altura fixa para todos */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 30px;
    background-color: #f9f9f9;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    overflow: hidden;
}

.y-acesso-box .pckg-hdr {
    padding: 0;
    margin: 0;
    border-bottom: none;
    text-align: center;
}

.y-acesso-box .pckg-hdr i {
    font-size: 28px;
    margin-bottom: 4px;
}

.y-acesso-box .y-acesso-text {
    font-size: 13px;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
    padding: 0 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    white-space: normal;
    height: 2.6em;
    word-break: break-word; /* <- importante */
}


.acesso-rapido-boxx {
    margin-left: -15px;
    margin-right: -15px;
    align-items: stretch;
}

/* Cada coluna (usando bootstrap) */
.acesso-rapido-boxx > .col-md-1,
.acesso-rapido-boxx > .col-md-2,
.acesso-rapido-boxx > .col-md-3,
.acesso-rapido-boxx > .col-md-4,
.acesso-rapido-boxx > .col-md-6,
.acesso-rapido-boxx > .col-md-12 {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: stretch;
}

/* Bloco inteiro (link) */
.acesso-rapido-boxx a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 15px 20px;
    border: 2px solid #f0f4f7;
    background-color: #fff;
    color: #06080a;
    font-size: 14px;
    text-decoration: none;
    border-radius: 25px;
    white-space: normal;
    word-break: break-word;
    transition: all 0.2s ease-in-out;
    width: 100%;
    height: 80px;
    min-height: 70px; /* altura mínima para padronizar */
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

/* Ícone */
.acesso-rapido-boxx i {
    font-size: 20px;
    width: 22px;
    min-width: 22px;
    text-align: center;
    line-height: 1;
}

/* Texto */
.acesso-rapido-boxx span {
    flex: 1;
    line-height: 1.2;
    display: inline-block;
    word-break: break-word;
    white-space: normal;
}

/* Hover */
.acesso-rapido-boxx a:hover {
    background-color: #00b167;
    color: #fff;
    border-color: #00b167;
}

.acesso-rapido-boxx a:hover i,
.acesso-rapido-boxx a:hover span {
    color: #fff;
}



/* ====== TOPO (faixa branca) ====== */
.header-top {
    background: #fff;
    display: flex;
    justify-content: space-around;
    padding: 10px 30px;
    align-items: center;
    border-bottom: 1px solid #ddd;
    flex-wrap: wrap;
}

.header-left {
    display: flex;
    align-items: center;
}

.header-left img {
    max-height: 60px;
    margin-right: 15px;
}

.header-left .title {
    font-size: 18px;
    color: #333;
}

.header-right {
    display: flex;
    align-items: center;
    /* gap: 20px; */
    font-size: 14px;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-evenly;
}

.header-right a {
    color: #00529b;
    text-decoration: none;
    margin-left: 10px;
}

.social-icons a {
    color: #003366;
    margin-left: 10px;
    font-size: 18px;
}

.date-text {
    font-size: 13px;
    color: #666;
}

/* ====== MENU (faixa verde) ====== */
.header-menu {
    background-color: #0b8f3d;
    padding: 10px 30px 10px 100px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.header-menu2 {
    background-color: #0b8f3d;
    padding: 10px 30px;
    display: flex;
    align-items: center;
    width: 100%;
}


.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 25px;
    flex-wrap: nowrap;
}

.menu-list > li > a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.menu-list > li > a:hover {
    color: #fde428;
}

/* ====== BUSCA ====== */
.search-box {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 30px;
    padding: 5px 10px;

    width: 350px;       
    margin-left: auto;  
    flex-shrink: 0;    
}


.search-box input {
    border: none;
    outline: none;
    padding: 8px 15px;
    border-radius: 30px;
    flex-grow: 1;
}

.search-box button {
    background-color: #0b8f3d;
    border: none;
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.search-box button:hover {
    background-color: #0a7032;
}

.mnu-br2 nav {
    background-color: #002952;
    display: flex;
    float: left;
    width: 100%;
    padding-left: 80px;
    border-radius: 6px;
    justify-content: center;
    flex-direction: row;
}
.marginbottom14 {
	margin-bottom: 14px !important;
}
.margin10px {
	margin-right: 10px;
}
.margintop10px {
	margin-top: 10px;
}

.menu-item {
    position: relative;
}

.submenu-principal {
    display: none;
    position: absolute;
    top: 18px;
    left: 0;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 5px;
    min-width: 300px;
    padding: 5px 5px;
    width: 100%;
    z-index: 999;
}

.submenu-filho {
    display: none;
    position: absolute;
    top: 0;
    left: 285px;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 5px;
    min-width: 300px;
    padding: 5px 5px;
    z-index: 999;
}

.has-dropdown:hover > .submenu-principal,
.has-dropdown:hover > .submenu-filho {
    display: block;
}

.submenu-principal li,
.submenu-filho li {
    padding: 0px 0px;
    white-space: nowrap;
}

.submenu-principal a,
.submenu-filho a {
    color: #333;
    text-decoration: none;
    display: block;
}

.submenu-principal a:hover,
.submenu-filho a:hover {
    background: #0b8f3d !important;
    color: #f4f4f4 !important;
}

.relativemenu {
  left: 0;
  position: relative;
  top: 0;
}

.bloco-noticias-container {
    padding: 40px 15px;
    background: #f8f9fa;
}

.titulo-noticias-grande {
    font-size: 21px;
    font-weight: bold;
    margin-bottom: 30px;
    border-left: 5px solid #0f8b0f;
    padding-left: 10px;
}

.linha-noticias.row {
    display: flex;
    flex-wrap: wrap;
}

@media (max-width: 992px) {
    .noticia-box {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 576px) {
    .noticia-box {
        flex: 1 1 100%;
    }
}

.noticiasbottom {
	margin-bottom: 20px;
}

.noticia-box {
    flex: 1 1 calc(25% - 20px);
    background: white;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    min-height: auto;
    height: 100%;
}


.noticia-box img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.info-noticia {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

@media (max-width: 992px) {
    .noticia-boxx {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 576px) {
    .noticia-boxx {
        flex: 1 1 100%;
    }
}

.noticia-boxx {
    flex: 1 1 calc(25% - 20px);
    background: white;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    min-height: 340px;
    height: 100%;
}


.noticia-boxx img {
    width: 100%;
    height: 334px;
    object-fit: cover;
}


.meta-noticia {
    font-size: 13px;
    color: #555;
    margin-bottom: 8px;
}

.meta-noticia .data-noticia {
    color: #009933;
    margin-right: 10px;
}

.meta-noticia .categoria-noticia i {
    color: #009933;
    margin-right: 4px;
}

.titulo-noticia {
    font-size: 15px;
    font-weight: bold;
    margin-top: 5px;
}

.titulo-noticia a {
    color: #002a5c;
    text-decoration: none;
}

.titulo-noticia a:hover {
    color: #0056b3;
}

.botao-ver-todas {
    text-align: center;
	margin-bottom: 20px;
}

.btn-ver-todas {
    background-color: #002a5c;
    color: white;
    padding: 10px 30px;
    font-weight: bold;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.btn-ver-todas:hover {
    background-color: #004080;
	color: white;
}


.pesquisa-container {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.titulo-pesquisa h2 {
    color: #2e7d32;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    border-bottom: 2px solid #2e7d32;
    padding-bottom: 5px;
    display: inline-block;
}

.form-pesquisa {
    display: flex;
    max-width: 600px;
    margin-bottom: 25px;
}

.campo-pesquisa {
    flex-grow: 1;
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-right: none;
    border-radius: 5px 0 0 5px;
    font-size: 16px;
    transition: border 0.3s;
}

.campo-pesquisa:focus {
    outline: none;
    border-color: #2e7d32;
}

.botao-pesquisa {
    padding: 10px 15px;
    background-color: #2e7d32;
    color: white;
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: background-color 0.3s;
}

.botao-pesquisa:hover {
    background-color: #1b5e20;
}

.resultado-pesquisa {
    margin-top: 15px;
}

.layout-especial-bg {
    background-image: url('/Layout/2025/images/bannerrodapeSA.png'); /* imagem que você quiser */
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    min-height: 100vh;
    color: white; /* caso precise ajustar texto */
}

.noticia-card-wrapper {
    margin-bottom: 15px;
}

.noticia-card {
    display: flex;
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.noticia-imagem img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 15px;
}

.noticia-conteudo {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.noticia-conteudo h4 {
    margin: 0 0 5px;
    font-size: 16px;
    color: #000;
}

.noticia-conteudo p {
    margin: 0 0 8px;
    font-size: 14px;
    color: #555;
}

.noticia-data {
    font-size: 12px;
    color: #999;
}
.dd-flex {
    display: flex;
    flex-direction: row-reverse;
    margin-bottom: 10px;
}}
.justify-content-between {
    justify-content: space-between;
}
.align-items-center {
    align-items: center;
}

.fundo {
	background-color: white;
}

.topo-fazendo-historia {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #ccc;
    margin-bottom: 20px;
    padding-bottom: 8px;
}

.topo-fazendo-historia .titulo-esquerda {
    font-size: 18px;
    color: #333;
}

.topo-fazendo-historia .prefixo {
    color: #888;
    font-weight: normal;
    margin-right: 5px;
}

.topo-fazendo-historia .link-direita a {
    font-size: 14px;
    color: #f4811f;
    text-decoration: none;
}

.lista-noticias-fh {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.noticia-fh {
    display: flex;
    background: #fff;
    padding: 15px;
    border-radius: 6px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
    gap: 20px;
}

.img-fh img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
}

.texto-fh {
    flex: 1;
}

.texto-fh h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #003366;
}

.texto-fh h3 a {
    text-decoration: none;
    color: inherit;
}

.texto-fh p {
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
}

.texto-fh .data {
    font-size: 12px;
    color: #999;
}
.texto-fhh {
	flex: 1;
    font-size: 20px;
    margin-bottom: 8px;
    color: #003366;
    text-decoration: none;
    color: inherit;
}

.texto-fh .data {
    font-size: 12px;
    color: #999;
}
@media (max-width: 768px) {
    .img-fh img {
        width: 100% !important;
        height: 200px !important; /* opcional, para manter proporção */
    }

    .noticia-fh {
        flex-direction: column !important;
    }

    .imagem-esquerda,
    .imagem-direita {
        flex-direction: column !important;
    }

    .img-fh {
        width: 100%;
    }

    .texto-fh {
        width: 100%;
    }
}


.acesso-btn {
    background-color: #8b4513;
    border: none;
    color: #ffffff;
    font-weight: bold;
    font-size: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
    user-select: none;
}

.acesso-btn:disabled {
    background-color: #ccc;
    cursor: default;
    color: #777;
}

.acesso-btn:not(:disabled):hover {
    background-color: #a87048;
}

.acesso-item {
    margin-bottom: 15px;
}

.limitar-linhas {
  display: -webkit-box;
  -webkit-line-clamp: 2; /* número de linhas que deseja exibir */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fb-container > .fb-page,
.fb-container > .fb-page span,
.fb-container iframe[style] {
    transform: scale(1.04);
    transform-origin: top left;
    width: 500px !important; 
    height: 700px !important; 
}


.footer-santo-angelo {
    background-color: #4b1b1b;
    color: #fff;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
}

.footer-santo-angelo .col-md-4 p,
.footer-santo-angelo .col-md-4 a {
    word-wrap: break-word; /* permite quebra de palavras longas */
    overflow-wrap: anywhere; /* quebra em qualquer ponto se necessário */
}


/* Logo / descrição */
.footer-desc { color: rgba(255,255,255,0.85); font-size: 13px; margin-top: 8px; line-height:1.5; }

/* Títulos com risquinho laranja */
.footer-title {
    position: relative;
    font-weight: 700;
    margin-bottom: 12px;
    padding-bottom: 6px;
}
.footer-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 36px;
    height: 7px;
    background-color: #d2692c;
    border-radius: 2px;
}

/* Links das listas */
.footer-links li a {
    color: #fff;
    display: block;
    padding: 2px 0;
    text-decoration: none;
    font-size: 14px;
}
.footer-links li a:hover {
    color: #d2692c;
}

/* Contato */
.footer-santo-angelo p { margin-bottom: 6px; color: rgba(255,255,255,0.9); }

/* Social icons */


/* Responsividade */
@media (max-width: 767.98px) {
    .footer-title::after { bottom: -6px; }
    .footer-santo-angelo { padding-bottom: 18px; }
    .brasao { max-width: 4.footer-sec-abase .container00px; }
    .footer-links li a { font-size: 13px; }
}


.ajustelogo {
	display: flex;
	flex-direction: column;
}

.titulorodape {
	color: white;
}

.iconerodape {
	color: #d2692c;
}

.fonteabaserodape {
	font-size: 10px !important;
}

/* Container geral */
.newsletter-card {
    display: flex;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 5px rgb(0 0 0 / 38%);
	margin-bottom: 80px;
	margin-top: 80px;
	height: 300px;
}

/* Lado esquerdo */
.newsletter-left {
    display: flex;
    background: #f9f6f6;
    color: white;
    flex: 1 1 40%;
    padding: 30px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 20px 0px 0px;
}

.newsletter-left h2 {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 15px;
	color: 5f5f5f;
	text-align: center;
}

.newsletter-left .highlight {
    color: #FC8E49;
    /*text-shadow: 0 0 5px #65391e, 0 0 10px #FC8E49, 0 0 20px #956e55, 0 0 40px #5b1c05, 0 0 80px #dd6336;*/
    font-weight: bold;
}

.newsletter-left h4 {
    font-size: 15px;
    margin-bottom: 15px;
	color: 5f5f5f;
	text-align: center;
}

.newsletter-info {
    background: rgba(255,255,255,0.15);
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 14px;
}

/* Lado direito */
.newsletter-right {
    display: flex;
    background: white;
    flex: 1 1 38%;
    padding: 30px;
    flex-direction: column;
    align-items: center;
}

.newsletter-right h4 {
    font-weight: bold;
}

.form-group {
    margin-bottom: 5px;
}

.newsletter-sub {
    font-size: 14px;
}

.newsletter-sub .exclusive {
    color: green;
    font-weight: bold;
}

/* Botão */
.newsletter-btn {
    font-weight: bold;
    font-size: 16px;
}

/* Responsividade */
@media (max-width: 768px) {
    .newsletter-card {
        height: 360px;
    }
    .newsletter-left,
    .newsletter-right {
        flex: 1 1 100%;
    }
}
@media (max-width: 425px) {
    .newsletter-card {
		flex-direction: column;
        height: 700px;
    }
    
}
    
.colorpolitica {
	color: #d2692c;
}
.checkflex {
	display:flex
}
.checkmargin {
	margin-left: 20px
}
.cnt-frm .chck-bx.styl2 {
    margin-top: 15px;
    margin-bottom: 15px;
}


.aip-wrapper {
    margin: 0;
    padding: 0 0 10px 0;
}

.aip-grid {
    display: flex;
    flex-wrap: wrap;
    background: #00a651;
    border-radius: 10px;
    padding: 32px 24px;
}

.aip-item {
    flex: 1 1 25%;
    min-width: 220px;
    text-align: center;
    color: #fff;
    padding: 12px 10px;
}

.aip-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
}

.aip-icon {
    font-size: 64px;    
    line-height: 1;
    margin-bottom: 14px;
}

.aip-text {
    font-size: 14px;
    line-height: 1.6;
	word-break: break-word;
    overflow-wrap: break-word;
}

.aip-responsaveis {
    text-align: center;
    margin: 26px 0 0 0;
    color: #555;
    font-size: 16px;
}

.aip-responsaveis p { margin: 6px 0; }

/* Responsividade */
@media (max-width: 992px) {
    .aip-item { flex: 1 1 50%; }
}
@media (max-width: 576px) {
    .aip-item { flex: 1 1 100%; }
}

.marginBTN40 {
	margin-bottom: 40px;
}
.marginBTN20 {
	margin-bottom: 20px;
}

#map-openstreet {
    width: 100%;
    height: 400px;
    margin-bottom: 15px;
    border: 2px solid #fff;
    border-radius: 20px;
    z-index: 0 !important;
}

.cat-color1 { background-color: #1e88e5; color: #fff; }
.cat-color2 { background-color: #f37017; color: #fff; }
.cat-color3 { background-color: #43a047; color: #fff; }
.cat-color4 { background-color: #fdd835; color: #000; } 
.cat-color5 { background-color: #8e24aa; color: #fff; }
.cat-color6 { background-color: #fb8c00; color: #fff; }
.cat-color7 { background-color: #00acc1; color: #fff; }
.cat-color8 { background-color: #6d4c41; color: #fff; }

.y-fltr-btns li a {
    padding: 6px 15px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
}

.banner-carousel {
	width: 100%;
	margin: 0 auto;
}

.banner-item img {
	width: 100%;
	height: auto;
	border-radius: 6px;
}

.slick-dotted.slick-slider {
    margin-bottom: 0px !important;
}

.banner-slick img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    margin-bottom: 20px;
}

.slick-prev, .slick-next {
  width: 50px;
  height: 50px;
  z-index: 20;
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

/* posição */
.slick-prev { left: 15px; }
.slick-next { right: 15px; }

/* hover */
.slick-prev:hover, .slick-next:hover {
  background: #fde428; /* amarelo */
}

.slick-prev:hover svg, .slick-next:hover svg {
  fill: #000; /* seta preta no hover */
}

/* remove pseudo-elementos padrão do slick */
.slick-prev:before, .slick-next:before {
  content: none !important;
}

/* dots */
.slick-dots li button:before {
  font-size: 12px;
  color: #fff;
  opacity: 0.7;
}
.slick-dots li.slick-active button:before {
  color: #fde428;
  opacity: 1;
}


/* Bloco principal */
.visiteflex {
	display: flex;
    align-items: flex-start;
    flex-direction: column;
	margin-left: 20px;
}

@media (max-width: 576px) {
    .visiteflex {
		display: flex !important;
		flex-direction: column !important;
		margin-left: 20px !important;
		align-items: center !important;
		margin-bottom: 10px !important;
	}
	.destaque-visite p {
		width: 100% !important;
	}	
}

/* Bloco principal */
.destaque-visite {
    background-color: #064d63; /* verde do fundo */
    padding: 20px;
    color: white;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* Título */
.destaque-visite h3 {
    font-weight: bold;
    margin-bottom: 15px;
	color: white;
}

/* Texto fixo */
.destaque-visite p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
	color: white;
	width: 500px;
}
.descricao-destaque {
	font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
	color: white;
	width: 500px;
}

/* Botão Saiba Mais */
.destaque-visite .btn-saiba-mais {
    background: #A9DFBF; /* verde claro */
    padding: 8px 15px;
    color: #000;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
    border-radius: 3px;
    transition: 0.3s ease;
}

.destaque-visite .btn-saiba-mais:hover {
    background: #82E0AA; /* tom mais forte no hover */
    color: #000;
    text-decoration: none;
}

/* Imagem */
.destaque-visite img {
    max-width: 100%;
    height: 250px;
    display: block;
    margin: 0 auto;
}

.transpa-titulo h2 {
    font-weight: bold;
    margin-bottom: 30px;
    font-size: 26px;
    color: #222;
}

.transparencia-item {
    margin-bottom: 30px;
}

.transparencia-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.transp-icone img {
    width: 240px;
    height: auto;
    object-fit: contain;
}

.transp-texto a {
    font-weight: bold;
    font-size: 18px;
    color: #222;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
}
.transp-texto a:hover {
    color: #007bff;
}
.transp-texto p {
	width: 170px;
    font-size: 14px;
    line-height: 1.5;
    color: #555;
    margin: 0;
}


.preto1 {
	color: Black !important;
}

/* Seção Você Sabia */
.voce-sabia {
    position: relative;
    background-size: cover;
    background-position: center;
	background-repeat: no-repeat;
    margin-bottom: 0px;
	border-radius: 8px;
}

.voce-sabia-overlay {
    display: flex;
    background: rgb(255 255 255 / 0%);
    padding: 30px;
    border-radius: 8px;
    justify-content: center;
}

.voce-sabia-titulo {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #312f2f;
}

.voce-sabia-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
}
@media (max-width: 576px) {
	.voce-sabia-cards {
		display: flex;
		flex-direction: column;
	}
}


.voce-sabia-item {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.voce-sabia-card {
    display: block;
    text-align: center;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    width: 100%;
    max-width: 320px;
}

@keyframes balloon {
  0%   { transform: translateY(-4px) rotate(-2deg); }
  50%  { transform: translateY(-12px) rotate(2deg); }
  100% { transform: translateY(-4px) rotate(-2deg); }
}

.voce-sabia-card:hover {
  animation: balloon 2s ease-in-out infinite;
  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}


.voce-sabia-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.voce-sabia-texto {
    padding: 15px;
}

.voce-sabia-texto p {
    font-size: 15px;
    margin: 0;
    color: #333;
}


.containervcsabia {
	width: 1170px;
}

.flexgerallista {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch; 
	padding: 10px;
    margin-bottom: 0px;
}

.flexgerallista > .caixa {
    display: flex;
    flex-direction: column; /* empilha conteúdo verticalmente */
    justify-content: space-between; /* força o botão para o final */
    padding: 20px;
    box-sizing: border-box;
    background: #f5f5f5; /* só para visualização */
}

.h3, h3 {
    font-size: 20px;
}

.hstry-pst {
    float: left;
    margin-top: 10px;
    width: 100%;
}
/* Card principal */
.hstry-pst {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
    padding: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s ease;
}

.hstry-pst:hover {
    transform: translateY(-5px);
	box-shadow: 0 4px 8px rgb(0 0 0 / 35%);
}

/* Título do card */
.hstry-pst .heading {
    font-size: 2.0rem;
    font-weight: 700;
    color: #0f4c3a; /* Verde escuro como na imagem */
    margin-bottom: 8px;
}

/* Descrição do card */
.hstry-pst h6.heading {
    font-weight: 400;
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
}
.wdgt ul li {
    width: 200px;
}

.vereadorflex {
    display: flex;
    flex-wrap: wrap;        /* permite quebrar para a linha de baixo */
    justify-content: center; /* centraliza os cards */
    gap: 20px;              /* espaçamento entre eles */
}
.thumbnail>img {
    display: block;
    max-width: 100%;
    height: 240px;
}

/* Container geral */
.y_vereadores_container {
    margin-top: 40px;
}

/* Row flexível */
.y_vereadores_row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* Wrapper de cada card */
.y_vereador_card_wrapper {
    display: flex;
    justify-content: center;
}

/* Card do vereador */
.y_vereador_card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    width: 100%;
    max-width: 220px;
}

.y_vereador_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

/* Imagem circular */
.y_vereador_img img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 15px auto 10px;
    display: block;
    object-fit: cover;
}

/* Informações do vereador */
.y_vereador_info {
    padding: 10px 15px 20px;
}

.y_vereador_name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

/* Botão de mais informações */
.y_vereador_btn {
    display: inline-block;
    padding: 6px 12px;
    font-size: 14px;
    background-color: #fde428;
    color: #000;
    border-radius: 6px;
    transition: background-color 0.3s, color 0.3s;
    cursor: pointer;
}

.y_vereador_btn:hover {
    background-color: #ffcc00;
    color: #000;
}


/* VEREADORES 1 */
.x_vereadores_slide {
    margin-top: 40px;
}

/* Row flexível */
.x_vereadores_slide_row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 20px;
}

/* Wrapper do card */
.x_vereador_slide_wrapper {
    width: 100%;
    max-width: 220px;
}

/* Card do vereador */
.x_vereador_slide_card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s;
}

/* Hover sombra */
.x_vereador_slide_card:hover {
    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

/* Imagem do vereador */
.x_vereador_slide_img {
    width: 100%;
	height: 200px;
    display: block;
    object-fit: cover;
}

/* Card que desliza para baixo */
.x_vereador_slide_info {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    background-color: #ffffff;
    text-align: center;
    padding: 0 10px;
	height: 80px;
}

/* Conteúdo do card */
.x_vereador_slide_info h4 {
    margin: 10px 0 5px;
    font-size: 16px;
    color: #000;
}

.x_vereador_slide_info .x_vereador_slide_btn {
    display: inline-block;
    margin-bottom: 10px;
    padding: 5px 10px;
    background-color: #000;
    color: #fde428;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.x_vereador_slide_info .x_vereador_slide_btn:hover {
    background-color: #333;
}

/* Ao passar o mouse no card, mostra o card deslizando */
.x_vereador_slide_card:hover .x_vereador_slide_info {
    max-height: 120px; /* Ajuste conforme conteúdo */
}

.TituloVereador {
	padding-bottom: 10px ;
    font-size: 25px ;
    font-family: poppins ;
    font-weight: 700 ;
    color: #252525;
    letter-spacing: -.8px ;
}

.pontos-turisticos-lista {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.ponto-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ponto-card a {
    color: inherit;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.ponto-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

.ponto-imagem img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.ponto-card:hover .ponto-imagem img {
    transform: scale(1.05);
}

.ponto-info {
    padding: 15px;
    flex: 1;
}

.ponto-info h4 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.3em;
    height: 48px;
    overflow: hidden;
}

.ponto-info .categoria {
    display: inline-block;
    background: #216e87;
    color: #ffffff;
    font-size: 13px;
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: 600;
}
.dropdown-toggle.btn-default {
    color: #ffffff;
    background-color: #216e87;
    border-color: #adadad;
}
.btn-default:active:focus, .btn-default:active:hover, .open>.dropdown-toggle.btn-default:focus, .open>.dropdown-toggle.btn-default:hover {
    color: #ffffff;
    background-color: #216e87;
    border-color: #adadad;
}

.colorsassunto > li > a {
    text-decoration: none;
    color: #000000;
    background-color: #ffffff;
    font-weight: 700;
}
.colorsassunto>li>a:focus,.colorsassunto>li>a:hover {
    text-decoration: none;
    color: #ffffff;
    background-color: #216e87;
}

/* Container principal */
.ponto-turistico-detalhe {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
	margin-bottom: 20px;
}

/* Título */
.ponto-turistico-detalhe h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    border-left: 6px solid #3498db;
    padding-left: 12px;
    margin-bottom: 1rem;
}

/* Descrição */
.ponto-turistico-detalhe .lead {
    font-size: 1.6rem;
    color: #000000;
    margin-bottom: 2rem;
    font-family: montserrat;
    font-weight: 500;
}

/* Texto completo */
.ponto-texto {
    font-size: 1.4rem;
    line-height: 1.7;
    color: #444;
}
/* ====== Carrossel custom (pt- prefix) ====== */
.pt-slider-wrapper { max-width: 980px; margin: 0 auto 1.5rem; }
.pt-slider { position: relative; overflow: hidden; border-radius: 14px; background: #f6f7f8; box-shadow: 0 8px 30px rgba(0,0,0,0.08); }
.pt-track { display: flex; transition: transform 0.6s cubic-bezier(.22,.9,.36,1); will-change: transform; }
.pt-slide { min-width: 100%; flex: 0 0 100%; display: block; }
.pt-slide img { width: 100%; height: 420px; object-fit: cover; display: block; transition: transform .7s ease; }
.pt-slide.active img { transform: scale(1.03); }

/* Controls */
.pt-control { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.45); border: none; width: 44px; height: 44px; border-radius: 50%; display:flex; align-items:center; justify-content:center; cursor:pointer; z-index: 30; transition: background .2s ease, transform .2s ease; }
.pt-control:hover { background: rgba(0,0,0,0.6); transform: translateY(-50%) scale(1.05); }
.pt-prev { left: 12px; }
.pt-next { right: 12px; }
.pt-arrow { color: #fff; font-size: 20px; line-height: 1; }

/* Indicators */
.pt-indicators { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); display:flex; gap:8px; z-index: 35; }
.pt-indicator { width: 10px; height: 10px; border-radius: 50%; border: none; background: rgba(255,255,255,0.6); cursor:pointer; transition: transform .15s, background .2s; box-shadow: 0 1px 3px rgba(0,0,0,0.2); }
.pt-indicator.active { background: #216e87; transform: scale(1.18); }

/* Mobile adjustments */
@media (max-width: 768px) {
    .pt-slide img { height: 260px; }
    .pt-control { width: 38px; height: 38px; }
}

/* fallback */
.pt-noimage { padding: 80px 16px; text-align:center; color:#777; font-size:1rem; }

/* Lightbox base (já tinha isso, aqui com navs) */
.pt-lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    padding: 40px;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.9);
    align-items: center;
    justify-content: center;
}

/* Imagem ampliada */
.pt-lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

/* Botão de fechar (X) */
.pt-lightbox-close {
    position: absolute;
    top: 18px;
    right: 28px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2100;
}
.pt-lightbox-close:hover { color: #216e87; }

/* Navegação anterior/próxima dentro do lightbox */
.pt-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.45);
    border: none;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    z-index: 2100;
    transition: background .15s, transform .12s;
}
.pt-lightbox-nav:hover { background: rgba(0,0,0,0.7); }
.pt-lightbox-prev { left: 24px; }
.pt-lightbox-next { right: 24px; }

/* responsivo */
@media (max-width: 768px) {
    .pt-lightbox-nav { width:44px; height:44px; font-size:18px; }
    .pt-lightbox-close { top: 12px; right: 16px; font-size:34px; }
    .pt-lightbox-content { max-height: 78vh; }
}


/* ==== NOVO CSS PARA OS ÁLBUNS ==== */
.album-gallery {
  --gap: 8px;
  display: grid;
  position: relative;
  clip-path: inset(1px);
  justify-content: center;
  overflow: hidden;
}

/* remove sombra, borda, background — totalmente limpo */
.album-box {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  position: relative;
}

.album-gallery > img {
  --offset: calc(-1 * var(--gap));
  grid-area: 1 / 1;
  width: 100%;
  max-width: 350px;
  aspect-ratio: 1;
  cursor: pointer;
  object-fit: cover;
  transition: transform 0.4s ease, clip-path 0.4s ease;
  border-radius: 10px;
  z-index: 1;
}

/* Corte diagonal */
.album-gallery > img:first-child {
  clip-path: polygon(0 0, calc(100% + var(--offset)) 0, 0 calc(100% + var(--offset)));
}
.album-gallery > img:last-child {
  clip-path: polygon(100% 100%, 100% calc(0% - var(--offset)), calc(0% - var(--offset)) 100%);
}

/* Efeitos ao passar o mouse */
.album-gallery:hover > img:last-child,
.album-gallery:hover > img:first-child:hover {
  --offset: calc(50% - var(--gap));
}
.album-gallery:hover > img:first-child,
.album-gallery:hover > img:first-child:hover + img {
  --offset: calc(-50% - var(--gap));
}

/* Informações abaixo do álbum */
.album-info {
  margin-top: 10px;
}

.album-info h4 a {
  color: #fff;
  text-decoration: none;
}

.album-info h4 a:hover {
  color: #fde428;
}

/* Botões abaixo das imagens */
.album-btns {
  margin-top: 10px;
}

.album-btns .rd50 {
  margin: 0 3px;
}

/* Responsividade — adapta o tamanho das imagens */
@media (max-width: 768px) {
  .album-gallery > img {
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .album-gallery > img {
    max-width: 220px;
  }
}


/* Paleta de cores dos botões 3D da paginação */
.pgn-wrp {
  /* Cor de fundo geral da área de paginação (não dos botões) */
  --pg-bg: rgba(246, 241, 209);

  /* Shade A → Cor principal das bordas e da sombra inferior 3D */
  /* Define o "contorno" do botão e a cor da sombra quando está elevado */
  --pg-shadeA: rgb(255 255 255);

  /* Shade B → Cor intermediária da sombra */
  /* Usada no segundo nível do sombreamento (mais escuro) para dar profundidade */
  --pg-shadeB: rgb(60 125 135);

  /* Shade C → Cor da camada 3D inferior */
  /* É o "corpo de baixo" do botão, a parte que aparece como base 3D */
  --pg-shadeC: rgb(142 179 211);

  /* Shade D → Cor do botão em estado hover (quando o mouse passa por cima) */
  /* Dá um destaque sutil simulando movimento para cima */
  --pg-shadeD: rgb(63 129 150);

  /* Shade E → Cor da face superior do botão (visível normalmente) */
  /* É a cor principal que você vê antes de interagir */
  --pg-shadeE: rgb(6 77 99);
  
  margin-top: 50px;
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.pagination {
  list-style: none;
  display: flex;
  gap: 8px;
  padding: 0;
  margin: 0;
}

/* Estilo base dos botões */
.pagination .page-link {
  position: relative;
  display: inline-block;
  padding: 0.45em 0.9em;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Open Sans", sans-serif;
  color: var(--pg-shadeA);
  background: var(--pg-shadeE);
  border: 2px solid var(--pg-shadeA);
  border-radius: 10px;
  text-decoration: none;
  transform-style: preserve-3d;
  transition: all 175ms cubic-bezier(0, 0, 1, 1);
  cursor: pointer;
}

/* Camada 3D */
.pagination .page-link::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--pg-shadeC);
  border-radius: inherit;
  box-shadow: 0 0 0 2px var(--pg-shadeB), 0 0.45em 0 0 var(--pg-shadeA);
  transform: translate3d(0, 0.45em, -1em);
  transition: all 175ms cubic-bezier(0, 0, 1, 1);
}

/* Hover */
.pagination .page-link:hover {
  background: var(--pg-shadeD);
  transform: translate(0, 0.2em);
}

/* Ativo (clicado) */
.pagination .page-link:active {
  transform: translate(0em, 0.45em);
}
.pagination .page-link:active::before {
  transform: translate3d(0, 0, -1em);
  box-shadow: 0 0 0 2px var(--pg-shadeB), 0 0.2em 0 0 var(--pg-shadeB);
}

/* Botão da página atual (pressionado permanentemente) */
.pagination .active .current {
  position: relative;
  display: inline-block;
  padding: 0.45em 0.9em;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Open Sans", sans-serif;
  color: var(--pg-shadeA);
  background: var(--pg-shadeC);
  border: 2px solid var(--pg-shadeA);
  border-radius: 10px;
  transform: translate(0em, 0.45em);
}
.pagination .active .current::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--pg-shadeC);
  border-radius: inherit;
  transform: translate3d(0, 0, -1em);
  box-shadow: 0 0 0 2px var(--pg-shadeB), 0 0.2em 0 0 var(--pg-shadeB);
}

/* Ícones */
.pagination i {
  margin: 0 5px;
}

.sessao-card {
    transition: all 0.3s ease;
}

    .sessao-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

.titulo-principal {
    font-weight: 700;
    color: #555;
    border-bottom: 2px solid #eee;
    padding-bottom: 8px;
}

.titulo-sessoes {
    font-weight: 700;
    letter-spacing: 0.5px;
}

.titulo-sessao {
    font-weight: 600;
    margin-bottom: 20px;
}

.titulo-sessao-detalhe {
    font-weight: 600;
    margin-top: 10px;
}

.nav-tabs .nav-link {
    color: #555 !important;
	font-size: 14px;
    font-weight: 500;
    padding: 8px;
}

    .nav-tabs .nav-link.active {
		background-color: #f8f9fa;
		font-size: 14px;
		padding: 8px;
		font-weight: bold;
		border-bottom: 3px solid #007bff;
		color: #007bff !important;
	}

.tab-content {
    min-height: 200px;
}

.tab-pane {
    display: none !important;
    opacity: 0;
    transition: opacity .3s ease-in-out;
}

    .tab-pane.active {
        display: block !important;
        opacity: 1;
    }

.table th {
    width: 180px;
}

.tabela-dados th {
    width: 250px;
    background: #f8f9fa;
    color: #333;
    font-weight: 600;
    padding: 10px;
}

.tabela-dados td {
    background: #fff;
    color: #444;
    padding: 10px;
}

.arquivo-link {
    background: #e1e1e1;
    border-radius: 5px;
    font-weight: 600;
    padding: 10px;
    transition: background 0.3s ease;
}

    .arquivo-link:hover {
        background: #e9ecef;
    }
	
.lista-participantes {
    margin-top: 15px;
}

.participante-item {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #e5e5e5;
	border-left: 6px solid #ccc;
    border-radius: 5px;
    padding: 12px 15px;
    margin-bottom: 10px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.participante-item:hover {
    background-color: #f8f8f8;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
}

.participante-foto img {
    width: 55px;
    height: 55px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid #ddd;
    margin-right: 15px;
}

.participante-info {
    flex-grow: 1;
}

.nome-vereador {
    font-weight: 600;
    color: #007f3d;
    font-size: 16px;
    text-decoration: none;
}


.participante-info .text-muted {
    font-size: 13px;
    color: #999 !important;
}

.participante-status {
    text-align: right;
}

.participante-status .badge {
    padding: 6px 10px;
    font-size: 13px;
    border-radius: 10px;
}


.outras-sessoes {
    background: #fff;
    border-radius: 10px;
}

.outras-sessoes h4 {
    font-size: 16px;
	font-weight: 600;
    border-bottom: 2px solid #eee;
    padding-bottom: 5px;
}

.outras-sessoes ul li {
    padding: 6px 0;
    border-bottom: 1px dotted #ccc;
}

.outras-sessoes ul li:last-child {
    border-bottom: none;
}

.outras-sessoes ul li a {
    color: #222;
    text-decoration: none;
    display: block;
    transition: color 0.2s ease-in-out;
}

.outras-sessoes ul li a:hover {
    color: #0d6efd;
}


.manifestacao-card {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background: #fff;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.manifestacao-card:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.manifestacao-card .fw-bold {
    background: #6c757d; 
    color: #fff;
    font-weight: 600;
    padding: 12px 15px;
    border-radius: 4px 4px 0 0;
    cursor: pointer;
    user-select: none;
}

.manifestacao-card .texto {
    background: #fff;
    padding: 15px;
    border-top: none;
    border-radius: 0 0 4px 4px;
    font-size: 15px;
    color: #333;
    line-height: 1.6;
    display: none;
}

.manifestacao-card .texto.bg-light {
    background: #f8f9fa;
}

.manifestacao-card .texto p {
    margin-bottom: 12px;
}


.lista-pautas {
    margin-top: 15px;
}

.pauta-item {
    padding: 8px;
    border-bottom: 1px dotted #ddd;
}

.pauta-titulo {
	font-size: 15px;
	color: #415B76;
	font-weight: bold;
}  
.pauta-titulo:hover { 
	color: #227645 !important;
}

.pauta-descricao {
    margin-top: 2px;
    font-size: 13px;
	font-weight: bold;
}


.enc-titulo {
    width: 100%;
    font-size: 25px;
    font-weight: 900;
    margin-bottom: 25px;
    color: #415B76;
    letter-spacing: -1px;
}

.encaminhamento-card {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background: #fff;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.encaminhamento-card:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.encaminhamento-card .fw-bold {
    background: #6c757d; 
    color: #fff;
    font-weight: 600;
    padding: 12px 15px;
    border-radius: 4px 4px 0 0;
    cursor: pointer;
    user-select: none;
}

.encaminhamento-card .votos {
    background: #fff;
    padding: 15px;
    border-top: none;
    border-radius: 0 0 4px 4px;
}

.enc-descricao {
    padding: 10px 15px;
    background: #f8f9fa;
    font-size: 14px;
    color: #333;
    border-left: 4px solid #ccc;
    border-radius: 4px;
    margin-bottom: 10px;
}
.encaminhamento-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.encaminhamento-card ul li {
    padding: 6px 0;
    border-bottom: 1px solid #eee;
    font-size: 15px;
    color: #333;
}

.encaminhamento-card ul li:last-child {
    border-bottom: none;
}

.encaminhamento-card i.fa {
    width: 20px;
    text-align: center;
    font-size: 16px;
}

.encaminhamento-card a {
    color: #007f3d;
    text-decoration: none;
    font-weight: 600;
}

.encaminhamento-card a:hover {
    text-decoration: underline;
}

.encaminhamento-card strong {
    font-weight: 800;
    text-transform: uppercase;
}


.participante-card,
.encaminhamento-card,
.manifestacao-card {
    background: #fff;
}

.nt_destaque {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px auto;
    max-width: 1200px;
    background: #f6f6f6;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 20px;
    position: relative;
}

.nt_destaque .carousel-inner {
    width: 100%;
}

.nt_destaque .carousel-item {
    transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
}

.nt_destaque .carousel-control-prev,
.nt_destaque .carousel-control-next {
    width: 5%;
    filter: invert(30%);
}

.nt_destaque .carousel-indicators {
    position: absolute;
    bottom: 10px;
}

.nt_destaque .carousel-indicators [data-bs-target] {
    background-color: #1b6dc1;
}

.nt_destaque .carousel-indicators .active {
    background-color: #0046ad;
}

.nt_destaque-box {
    display: flex;
    flex-direction: row;
    gap: 40px;
    width: 100%;
    justify-content: space-between;
}

.nt_destaque-img {
    flex: 1;
}

.nt_destaque-img img {
    width: 100%;
    height: 300px;
    border-radius: 40px 0 40px 0;
    object-fit: cover;
}

.nt_destaque-texto {
    flex: 1.2;
    display: flex;
    flex-direction: column;
}

.nt_destaque-data {
    font-size: 14px;
    color: #1c1c1c;
    margin-bottom: 5px;
    display: block;
}

.nt_destaque-categoria {
    display: inline-block;
    background-color: #d9ebff;
    color: #1b6dc1;
    font-weight: 600;
    font-size: 13px;
    padding: 4px 10px;
    border-radius: 5px;
    width: fit-content;
    font-style: normal;
}

.nt_destaque-titulo a,
.nt_destaque-titulo p {
    color: #0046ad;
    font-size: 28px;
    font-weight: 700;
    text-decoration: none;
    line-height: 1.3;
}

.nt_destaque-titulo a:hover,
.nt_destaque-titulo p:hover {
    color: #1b6dc1;
}

.nt_destaque-desc,
.nt_destaque-desc p {
    color: #555;
    font-size: 15px;
    margin-top: 10px;
    line-height: 1.6;
}
@media (max-width: 768px) {
    .nt_destaque-box {
        flex-direction: column;
    }
    .nt_destaque-img,
    .nt_destaque-texto {
        flex: 1;
        width: 100%;
    }
    .nt_destaque-titulo a,
    .nt_destaque-titulo p {
        font-size: 22px;
    }

    .nt_destaque .carousel-control-prev,
    .nt_destaque .carousel-control-next {
        width: 10%;
    }

    .nt_destaque .carousel-indicators {
        bottom: 5px;
    }
}

#myModal .modal-dialog {
    max-width: 700px;
    margin: 100px auto; /* afasta do topo e centraliza */
}

#myModal .modal-content {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
    background: #fff;
}

#myModal .modal-content img {
    width: 100%;
    height: auto;
    display: block;
}

#myModal .modal-body {
    padding: 0;
}

#myModal .modal-header {
    display: none; /* remove o cabeçalho padrão se não for necessário */
}

#myModal .modal-backdrop {
    background: rgba(0, 0, 0, 0.7);
}

.modal {
    z-index: 9999 !important; 
}

.modal-backdrop {
    z-index: 9998 !important;
    background: rgba(0, 0, 0, 0.7) !important;
}

.cp-megamenu,
.cp-megamenu.sticky {
    z-index: 1020 !important;
}

.acx-rotativo-wrapper {
    background: transparent;
    padding: 0;
    margin: 0;
    position: relative;
}

.acx-rotativo-title {
    padding-bottom: 10px;
    font-size: 25px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    color: #252525;
    letter-spacing: -0.8px;
    text-align: center;
}

.acx-rotativo-item {
    background-color: #064d63;
    color: #fff;
    border-radius: 10px;
    margin: 10px;
    height: 110px;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.acx-rotativo-item:hover {
    background-color: #125d2c;
    transform: translateY(-3px);
}

.acx-rotativo-link {
    color: #fff;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 12px;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.acx-rotativo-link i {
    font-size: 28px;
    color: #fff;
    margin-bottom: 8px;
}

.acx-rotativo-link h3 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.3;
    color: #fff;
}

.acx-rotativo .owl-nav {
    position: absolute;
    top: 0;
    left: -30px;
    width: 105%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: -1;
    justify-content: space-between;
}

.acx-rotativo .owl-nav button {
    width: 70px;
    height: 100%;
    border: none;
    background: none;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 6;
    transition: all 0.3s ease;
}

.acx-rotativo .owl-nav button.owl-prev::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.15), transparent);
    z-index: 1;
    transition: background 0.3s;
}

.acx-rotativo .owl-nav button.owl-next::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 100%;
    background: linear-gradient(to left, rgba(0, 0, 0, 0.15), transparent);
    z-index: 1;
    transition: background 0.3s;
}

.acx-rotativo .owl-nav i {
    position: relative;
    z-index: 2;
    font-size: 28px;
    color: color: #000000;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
    transition: transform 0.2s ease;
}

.acx-rotativo .owl-nav button:hover::before {
    background: rgba(0, 0, 0, 0.25);
}

.acx-rotativo .owl-nav button:hover i {
    transform: scale(1.2);
}

.acx-rotativo .owl-stage {
    display: flex;
    align-items: stretch;
}

.acx-rotativo .owl-item {
    display: flex;
    justify-content: center;
}

@media (max-width: 768px) {
    .acx-rotativo .owl-nav button {
        width: 50px;
    }

    .acx-rotativo .owl-nav i {
        font-size: 22px;
    }
}

.nt3d-main {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0px auto 0 auto; /* desce o bloco */
    height: 80vh;
}

.nt3d-carousel-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.nt3d-carousel-container {
    position: relative;
    perspective: 1000px;
    height: 70vh;
    width: 480px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nt3d-carousel-track {
    position: relative;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    justify-content: center;
    align-items: center;
}

.nt3d-card {
    position: absolute;
    width: 420px;
    height: 240px;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nt3d-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nt3d-card.center {
    z-index: 10;
    transform: scale(1.05) translateZ(0);
}

.nt3d-card.up-1 {
    transform: translateY(-140px) scale(0.9) translateZ(-150px);
    opacity: 0.9;
}

.nt3d-card.up-2 {
    transform: translateY(-280px) scale(0.8) translateZ(-300px);
    opacity: 0.7;
}

.nt3d-card.down-1 {
    transform: translateY(140px) scale(0.9) translateZ(-150px);
    opacity: 0.9;
}

.nt3d-card.down-2 {
    transform: translateY(280px) scale(0.8) translateZ(-300px);
    opacity: 0.7;
}

.nt3d-card.hidden {
    opacity: 0;
    pointer-events: none;
}

.nt3d-controls-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.nt3d-news-info {
    display: flex;
    text-align: center;
    flex-direction: column;
    align-items: center;
}

.nt3d-title {
    font-size: 2.8rem;
    color: #082a7b;
    font-weight: 700;
    position: relative;
    margin-bottom: 10px;
}

.nt3d-desc {
    color: #60636f;
    font-size: 15px;
    max-width: 420px;
    line-height: 1.4;
}

.nt3d-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.nt3d-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(8, 42, 123, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.nt3d-dot.active {
    background: #082a7b;
    transform: scale(1.2);
}

.nt3d-nav-arrow {
    background: transparent;
    border: none;
    font-size: 2.6rem;
    color: #082a7b;
    cursor: pointer;
    transition: 0.3s;
}

.nt3d-nav-arrow:hover {
    transform: scale(1.2);
    color: #1e44b8;
}

/* Remove setas da esquerda */
.nt3d-carousel-container .nt3d-nav-arrow {
    display: none;
}

.nt3d-nav-controls {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.nt3d-carousel-container.dragging {
  cursor: grabbing;
}
.nt3d-card {
  transition: transform 0.2s ease-out;
}


.nt3d-related {
    margin-top: 40px;
    text-align: left;
}

.nt3d-related h4 {
    font-size: 1.5rem;
    color: #082a7b;
    margin-bottom: 15px;
    font-weight: 700;
}

.nt3d-related-list {
    display: flex;
    gap: 15px;
    flex-direction: row;
}

.nt3d-rel-item {
    display: flex;
    border-radius: 10px;
    background: #e5e5e5;
    width: 300px;
    height: auto;
    padding: 8px;
    transition: 0.3s;
    justify-content: center;
    align-items: center;
}

.nt3d-rel-item:hover {
    background: #eef2ff;
    transform: translateX(3px);
}

.nt3d-rel-item img {
    width: 300px;
    height: 161px;
    border-radius: 8px;
    object-fit: cover;
}

.nt3d-rel-text h5 {
    font-size: 1.6rem;
    color: #082a7b;
    margin: 0;
    margin-top: 10px;
    width: 100%;
    font-weight: 600;
    white-space: normal;
    word-break: break-word;
    line-height: 1.3;
}

.nt3d-rel-text span {
    font-size: 1.3rem;
    color: #777;
}
@media (max-width: 768px) {
    .nt3d-main {
        flex-direction: column;
        height: auto;
        gap: 20px;
        padding: 20px 0;
    }

    .nt3d-carousel-container {
        width: 90%;
        height: 60vh;
		margin-top: 40px;
    }

    .nt3d-card {
        width: 300px;
        height: 180px;
    }

    .nt3d-controls-section {
        gap: 20px;
    }

    .nt3d-title {
        font-size: 1.5rem;
    }

    .nt3d-desc {
        font-size: 0.9rem;
        padding: 0 10px;
    }
}

#tempo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}

.cardContainer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 230px; 
  margin: 10px auto;
}

.card {
  width: 100%;
  height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 20px 10px;
  border-radius: 15px;
  backdrop-filter: blur(30px);
  background-color: rgb(0 0 0 / 35%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.cardContainer::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgb(0 35 227), transparent 70%);
  z-index: -1;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 1s ease;
}

.cardContainer:hover::before {
  transform: translate(-60.5%, -10%) scale(1.2);
}

.city {
  font-weight: 700;
  font-size: 1.3em;
  letter-spacing: 1.2px;
  color: #fff;
  text-transform: uppercase;
}

.weather {
  font-weight: 500;
  font-size: 1.3em;
  letter-spacing: 1.2px;
  color: rgb(255 255 255);
  text-align: center;
  text-transform: capitalize;
}

.temp {
  font-size: 1.8em;
  color: white;
  font-weight: bold;
}

.icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.weather-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.minmaxContainer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: 0 0px;
}

.min,
.max {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.min {
  padding-right: 10px;
}
.max {
  border-left: 2px solid white;
  padding-left: 20px;
}

.maxHeading,
.minHeading {
  font-size: 1.7em;
  font-weight: 600;
  color: white;
}

.maxTemp,
.minTemp {
  font-size: 1.65em;
  font-weight: 500;
  color: rgb(255 255 255);
}

@media (max-width: 992px) {
  .cardContainer {
    max-width: 220px;
  }
}

@media (max-width: 768px) {
  .cardContainer {
    max-width: 200px;
  }
}

@media (max-width: 576px) {
  .cardContainer {
    max-width: 90%;
  }
}

.height300 {
	height: 300px !important;
}

.flip-card {
    background-color: transparent;
    width: 190px;
    height: 254px;
    perspective: 1000px;
    font-family: sans-serif;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 1rem;
    border: 1px solid coral;
    box-shadow: 0 8px 14px rgba(0,0,0,0.2);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px;
}

.flip-card-front {
    background: linear-gradient(
        120deg,
        bisque 60%,
        rgb(255, 231, 222) 88%,
        rgb(255, 211, 195) 40%,
        rgba(255, 127, 80, 0.6) 48%
    );
    color: coral;
}

.flip-card-back {
    background: linear-gradient(
        120deg,
        rgb(255, 174, 145) 30%,
        coral 88%,
        bisque 40%,
        rgb(255, 185, 160) 78%
    );
    color: white;
    transform: rotateY(180deg);
}

.title-flip-card {
    font-size: 1.3em;
    font-weight: 900;
    margin-bottom: 8px;
}

.cards-flex {
    display: flex;
    align-items: center;
    justify-content: center;
}
.titulo-etapa {
    text-align: center;
    font-weight: 700;
    margin: 30px 0 20px;
    padding-bottom: 8px;
    border-bottom: 3px solid #216e87;
    color: #1a1a1a;
}

.card-mata-mata {
    display: flex;
    margin-bottom: 20px;
    border: 1px solid #858585;
    transition: all 0.2s ease;
    padding: 20px;
    border-radius: 10px;
    height: 150px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    backdrop-filter: blur(30px);
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

    .card-mata-mata:hover {
        transform: translateY(-3px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }

.partida-numero {
    font-weight: 600;
    margin-bottom: 10px;
    color: #555;
}

.placar-mata-mata {
    margin-top: 10px;
}

.placar {
    display: inline-block;
    margin: 0 8px;
    font-weight: 700;
}

.data-partida {
    font-size: 12px;
    color: #777;
    margin-top: 4px;
}

.tagclouds .icon-img {
    filter: brightness(1.2) contrast(1);
}

.icon-img {
    width: 54px !important;
    height: 25px;
    display: inline-block;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    filter: brightness(2.6) contrast(3.2);
}

.icon-iss {
    background-image: url('https://iss.abase.com.br/img/iss-login.png');
}

.iconiss {
    background-image: url('https://testenfse.abase.com.br/iconiss.ico');
}


#lightbox{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeIn .4s ease;
}

@keyframes fadeIn{
  from{opacity:0}
  to{opacity:1}
}

#lightbox-img{
  max-width: 90%;
  max-height: 85%;
  border-radius: 18px;
  box-shadow: 0 40px 80px rgba(0,0,0,.6);
  animation: zoomIn .35s ease;
}

@keyframes zoomIn{
  from{transform:scale(.9);opacity:0}
  to{transform:scale(1);opacity:1}
}

.lightbox-btn{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(6px);
  border:none;
  width:55px;
  height:55px;
  border-radius:50%;
  font-size:26px;
  color:#fff;
  cursor:pointer;
  transition:.25s;
}

.lightbox-btn:hover{
  background: rgba(255,255,255,.35);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev{left:30px}
.lightbox-next{right:30px}
.lightbox-close{
  position:absolute;
  top:25px;
  right:25px;
  width:42px;
  height:42px;
  border-radius:50%;
  background: rgba(255,255,255,.25);
  color:#fff;
  border:none;
  font-size:20px;
  cursor:pointer;
  transition:.25s;
}

.lightbox-close:hover{
  background: rgba(255,255,255,.45);
  transform: scale(1.1);
}

/* ===== SLIDER DE CONTEÚDO ===== */
.slider-wrapper{
  position:relative;
  max-width:100%;
  padding-top:400px;
}

.slider-wrapper input{
  display:none;
}

.slider-wrapper .slides{
  position:absolute;
  inset:0;
  height:400px;
  touch-action: pan-y;
}

.slider-wrapper .slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transform: scale(1.05);
  transition: opacity .6s ease, transform .6s ease;
  border-radius:16px;
  cursor:pointer;
}

/* slide ativo */
.slider-wrapper input:nth-of-type(1):checked ~ .slides .slide:nth-child(1),
.slider-wrapper input:nth-of-type(2):checked ~ .slides .slide:nth-child(2),
.slider-wrapper input:nth-of-type(3):checked ~ .slides .slide:nth-child(3),
.slider-wrapper input:nth-of-type(4):checked ~ .slides .slide:nth-child(4){
  opacity:1;
  transform: scale(1);
}

/* thumbs */
.slider-wrapper .thumbs{
  text-align:center;
}

.slider-wrapper .thumbs label{
  width:60px;
  height:60px;
  border-radius:50%;
  display:inline-block;
  margin:6px;
  background-size:cover;
  background-position:center;
  border:3px solid #ccc;
  cursor:pointer;
  transition:.3s;
}

.slider-wrapper .thumbs label:hover{
  transform:scale(1.1);
}

/* setas */
.slider-wrapper .slider-arrows{
  position:absolute;
  top:35%;
  left:0;
  width:100%;
  display:flex;
  justify-content:space-between;
  pointer-events:none;
}

.slider-wrapper .slider-arrows button{
  pointer-events:auto;
  background:rgba(0,0,0,.6);
  color:#fff;
  border:none;
  font-size:30px;
  padding:10px 15px;
  cursor:pointer;
  border-radius:50%;
}


.responsive-table {
	width: 100%;
}

