/* Custom Styles for Aquapolo - Reciclagem de ÃƒÆ’Ã‚Âgua */

/* General */

@font-face {
    font-family: 'myriad-It';
    src: url('fonts/MyriadPro-It.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'myriad';
    src: url('fonts/MyriadVariableConcept-Roman.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}


/* Tela branca que cobre tudo 
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    /* branco total *
    z-index: 9999;
    /* fica acima de tudo *
    transition: opacity 3s ease;
    /* animação suave *
}

/* Classe que some *
#preloader.fade-out {
    opacity: 0;
    pointer-events: none;
    /* deixa clicar por baixo após sumir *
}*/

.padding-right {
    padding-right: 150px !important;
}

.padding-left {
    padding-left: 150px !important;
}

/* pode continuar adicionando ou usar JS para automatizar */



/*bootstrap*/

.text-primary {
    color: rgb(49 117 191) !important;
}

/*body*/

body {
    font-family: 'myriad', sans-serif;
    /* Exemplo de fonte, ajustar conforme identidade visual */
    /*padding-top: 90px; /* Ajuste para a altura da navbar fixa */
    color: #333;

}

header {
    background: #13284b;
}

header nav {
    border-bottom: 0 !important;
}

.navbar-brand svg {
    width: 100px;
}

.social-bar {
    position: absolute;
    right: -42px;
    top: 175px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 20px;
}

.social-link {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    text-transform: uppercase;
    color: white;
    text-decoration: none;
    font-family: sans-serif;
    font-weight: bold;
    letter-spacing: 2px;
    transition: 0.3s;
    font-size: 14px;
}

.social-link svg {
    height: 20px;
}

.social-link:hover {
    color: #ddd;
}

.navbar-nav .nav-link {
    color: #fff !important;
    font-size: 11px;
}

.dropdown-menu {
    background: #13284b;
}

.dropdown-menu a {
    color: #fff;
}

#search-toggle i {
    color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #0056b3;
    /* Azul principal da Aquapolo - ajustar */
}

hr.hr-title {
    width: 40px;
    border: none;
    border-top: 2px solid #0056b3;
    /* cor e espessura da linha */

}

a {
    color: #0056b3;
    text-decoration: none;
}

a:hover {
    color: #003d80;
    text-decoration: underline;
}

.subtitulo {
    text-transform: uppercase;
    font-size: 10px;
    color: #003d80;
}

/* Navbar */
.navbar {
    border-bottom: 1px solid #eee;
    min-height: 70px;
    /* Ajustar altura conforme logo e itens */
}

.navbar-brand {
    padding-left: 50px;
}

.navbar-brand img {
    max-height: 50px;
    /* Ajustar altura do logo */
}

.navbar-nav .nav-link {
    color: #555;
    font-weight: 500;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    text-transform: uppercase;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    color: #0056b3;
}

.navbar-nav .dropdown-menu {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
}

main {
    max-width: 1920px;
    margin: 0 auto;
}

/* Hero Section */
.hero-section {
    /* Usar a imagem de fundo real */

    background-size: cover;
    color: white;
    padding: 120px 0 0;
    /* Ajustar padding */
    text-align: left;
}

.hero-section .container {
    position: relative;
    /* Para posicionar elementos internos se necessÃƒÆ’Ã‚Â¡rio */
}

.hero-section p {
    font-size: 1rem;
    margin-bottom: 1.5rem !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-section h1 {
    font-size: 2.5vw;
    font-weight: bold;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    /* Sombra para legibilidade */
}

.hero-section svg {
    width: 33%;
    margin-bottom: 21px;
}


.hero-icons div img {
    height: 40px;
    margin-bottom: 20px;
}

.hero-icons div p {
    color: #fff;
    word-break: break-word;
}

.hero-icons {
    position: fixed;
    width: 80%;
    margin: 0 auto;
    top: 75px;
}


.diferencial-card {
    position: relative;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* Overlay para escurecer ao hover */
.diferencial-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color 0.3s ease;
    z-index: 1;
}

.diferencial-card:hover::after {
    background-color: rgba(0, 0, 0, 0.4);
}

/* Garante que o conteÃºdo esteja visÃ­vel acima do overlay */
.diferencial-card>* {
    position: relative;
    z-index: 2;
}

/*gota dagua*/

#reciclagem-agua-mundo-triggersvg #gota {
    transform-origin: center bottom;
    transition: none;
}

#reciclagem-agua-mundo-trigger:hover svg #gota {
    animation: cairEspatifar 1s ease-in-out infinite;
}

@keyframes cairEspatifar {
    0% {
        transform: translateY(-5px) scale(1, 1);
        opacity: 1;
    }

    60% {
        transform: translateY(40px) scale(1.1, 0.9);
        opacity: 1;
    }

    80% {
        transform: translateY(80px) scale(1.5, 0.5);
        opacity: 0.8;
    }

    100% {
        transform: translateY(100px) scale(2.5, 0.2);
        opacity: 0;
    }
}

.reciclagem-agua-section {
    /* seu fundo atual */
    background: url(images/bg_reciclagem.png) no-repeat left bottom;
    /* aumente um pouco para dar espaço de “panning” */
    background-size: 120% auto;

    height: 560px;

    /* animação configurada mas pausada por padrão */
    animation: bg-pan 14s linear infinite alternate;
    animation-play-state: paused;

    will-change: background-position;
}

/* quando visível, roda a animação */
.reciclagem-agua-section.scrolling {
    animation-play-state: running;
}

/* keyframes: esquerda -> direita mantendo bottom */
@keyframes bg-pan {
    from {
        background-position: left bottom;
    }

    to {
        background-position: right bottom;
    }
}

/* acessibilidade: respeita quem prefere menos movimento */
@media (prefers-reduced-motion: reduce) {

    .reciclagem-agua-section,
    .reciclagem-agua-section.scrolling {
        animation: none !important;
    }
}

.reciclagem-agua-section {
    position: relative;
    height: 560px;
    overflow: hidden;
}

.reciclagem-agua-section .bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* faz o vídeo preencher sem distorcer */
    z-index: 0;
}

.reciclagem-agua-section .container {
    position: relative;
    z-index: 1;
    /* coloca o conteúdo na frente do vídeo */
}

/*brilho*/

#inovacao-trigger:hover svg #brilho {
    animation: brilhoExpandir 1s ease-in-out infinite;
    transform-origin: center center;
}

@keyframes brilhoExpandir {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    70% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/*sustentabilidade*/

#sustentabilidade-trigger:hover svg #seta {
    animation: girarSeta 2s linear infinite;
    transform-origin: center center;
}

@keyframes girarSeta {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.hero-icons .diferenciais>a:nth-child(1) {
    background: url('images/reciclagem_01.jpg') #3397cc;
}

.hero-icons .diferenciais>a:nth-child(2) {
    background: url('images/reciclagem_02.jpg') #3397cc;
}

.hero-icons .diferenciais>a:nth-child(3) {
    background: url('images/inovacao.jpg') #3397cc;
}

.hero-icons .diferenciais>a:nth-child(4) {
    background: url('images/sustentabilidade.jpg') #3397cc;
}

.parallax-section {
    position: relative;
    background-image: url('images/reciclagem_01.jpg') #3397cc;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
}

/* Overlay escurecendo */
.parallax-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color 0.3s ease;
    z-index: 1;
}

.parallax-section:hover::after {
    background-color: rgba(0, 0, 0, 0.4);
}

.parallax-section>* {
    position: relative;
    z-index: 2;
}



.hero-icons .row {
    --bs-gutter-x: 0;
}

.hero-icons svg {
    height: 40px;
    margin-bottom: 20px;
}

.girar {
    transform: rotate(360deg);
    transform-origin: center;
    transition: transform 0.5s ease;
}

/*Relogio*/

.area-relogio {
    background: url(images/bd_relogio.jpg) no-repeat;
    height: 582px;
    background-position: calc(50% - 386px) 19px;
    z-index: -1;
    background-size: 1373px;
}

.aquapolo-counter {
    margin-top: 252px;
}

.aquapolo-counter div {
    font-size: 1.5em;
}

.hero-icons div img {
    height: 40px;
    margin-bottom: 20px;
}

.reutilizometro-list li {
    background-color: rgb(224 242 255);
    padding: 15px 0 15px 24px;
    width: 100%;
    flex-wrap: wrap;
    align-items: center;
}

.reutilizometro-list li .icon {
    width: 120px;
    text-align: center;
    padding-right: 20px;
}

.reutilizometro-list li .cont {
    padding-left: 20px;
    width: 50%;
}


.reutilizometro-list li img {
    width: 74px;
}


.row-reutilizometro>div {
    z-index: -1;
}

.digit {
    background: rgb(200 233 255);
    border-radius: 5px;
    margin: 0 2px;
    padding: 0 5px;
    display: flex;
    align-content: center;
    flex-wrap: wrap;
}

#reutilizometro-title {
    margin-top: 150px;
}


.banner-informativo-section {
    margin-top: 100px;
}

/*relogio reutilizometro*/

svg#relogio_reutilizometro {
    height: 87px;
    margin-left: 153px;
    margin-top: 84px;
}

svg #ponteiro {
    animation: girarPonteiro 3s linear infinite;
    transform-origin: 64.69px 64.69px;
    /* centro do SVG */
}

@keyframes girarPonteiro {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.banner-informativo {
    position: relative;
    border-radius: 12px;
    width: 80%;
    margin: -167px auto 0 auto;
}

.banner-informativo .personagem {
    position: absolute;
    float: right;
    width: 39%;
    bottom: 0px;
    right: 0px;
}

.banner-imagem {
    width: 100%;
    height: auto;
    display: block;
}

.banner-conteudo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 62px 429px 0 97px;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

.banner-texto {
    max-width: 600px;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.banner-texto,
.banner-informativo .personagem {
    opacity: 0;
    transform: translate(100px, 100px);
    /* opcional: leve movimento */
    transition: opacity 1s ease, transform 1s ease;
}

.banner-texto.visible,
.banner-informativo .personagem.visible {
    opacity: 1;
    transform: translate(0, 0);
}

.btn-banner {
    margin-top: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid #f1b8c4;
    color: #f1b8c4;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-banner:hover {
    background-color: #f1b8c4;
    color: #fff;
}

/*Sobre nos*/

.sobre-nos-section {
    background: url(images/bg-sobre.png) no-repeat;
    background-color: transparent;
    background-size: cover;
    padding-top: 277px !important;
    margin-top: -154px;
    background-position-y: bottom;
}


.stats-row>div {
    color: #fff;
}

.stats-row>div div {
    font-size: 100px;
    color: #007ac3;
}

.stats-row>div p:first-child {
    font-size: 16px;
    color: #007ac3;
    width: 72%;
    text-align: center;
    margin: 0 auto;
    justify-content: center;
}

.stats-row>div p:last-child {
    font-size: 16px;
    color: #007ac3;
}


.stats-row .icon {
    align-content: center;
    margin-top: 49px;
}

.stats-row .icon img {
    height: 50px;
    filter: brightness(0) saturate(100%) invert(23%) sepia(9%) saturate(2230%) hue-rotate(181deg) brightness(93%) contrast(87%);
    width: auto;
}

.box-proposito-valores {
    background: url(images/bg_proposito_valores.jpg) no-repeat;
    background-size: cover;
}

/*clientes home*/

.clientes-lista {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    list-style: none;
    padding: 0;
    margin-top: 50px;
}

.clientes-lista li {
    flex: 1 1 0;
    text-align: center;
}

.clientes-lista img {
    max-height: 48px;
    max-width: 160px;
    display: inline-block;
}


/*Reuso de agua*/

.reuso-agua-section {
    background: url(images/imagem.JPG) no-repeat;
    background-size: cover;
    padding: 80px 0;
}

/*Reconhecimentos*/

#reconhecimentosCarousel .carousel-item img {
    width: 50px;
    margin-right: 10px;
}

.item-reconhecimento div {
    display: inline-block;
    background: url(images/louros.png) no-repeat rgb(217 243 252);
    background-position: center;
    background-size: 81%;
    color: #fff;
    text-align: center;
    flex-direction: column;
    border-radius: 5px;
}

.item-reconhecimento div div {
    border: 1px solid #fff;
    margin: 10px;
    border-radius: 5px;
    width: 255px;
    height: 113px;
    text-align: center;
}

.item-reconhecimento div div p {
    display: block;
    width: 60%;
}

.item-reconhecimento div div p:first-child {
    color: rgb(153 202 231);
    margin: auto;
    margin-top: 24px;
    font-size: 22px;
    width: 60%;
}

.item-reconhecimento div div p:last-child {
    color: rgb(0 122 195);
    font-size: 12px;
    margin: auto;
    margin-bottom: 0;
    width: 60%;
    line-height: 12px;
}


/*Onde atuamos*/

.industria p:first-child {
    min-height: 73px;
    display: flex;
    align-items: center;
}

.industria-azul * {
    color: #81b2db;
}

.industria-branco * {
    color: #fff !important;
}

.sobre-nos-branco {
    background: url(images/logo_big_azul.png) no-repeat !important;
    background-color: transparent !important;
    background-size: 100% !important;
    background-position-y: 50% !important;
}



/* Content Sections */
.content-section h2 {
    margin-bottom: 0;
    padding-bottom: 0.5rem;
    display: inline-block;
    /* Para a borda ficar sÃƒÆ’Ã‚Â³ no texto */
}

.content-section p {
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Image Gallery */
.image-gallery h2 {
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #0056b3;
    display: inline-block;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: transparent;
    /* Fundo azul semi-transparente para controles */
    border-radius: 50%;
    padding: 15px;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    filter: brightness(0) saturate(100%) invert(31%) sepia(94%) saturate(746%) hue-rotate(176deg) brightness(95%) contrast(88%);
}


element.style {
    background-color: grey;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 100%;
    background: #0070bd;
    border-top: 0;
    border-bottom: 0;
}

/*Mapa de Abrangencia*/

#map {
    width: 100%;
    /* Largura total */
    height: 160px;
    /* Altura fixa (ou 100% se desejar ocupar toda a tela) */
}

/*Noticias*/

#carouselNoticias .carousel-control-next {
    right: -63px;
    padding: 0;
    margin: 0;
    width: 48px;
    top: -166px;
}

#carouselNoticias .carousel-control-prev {
    left: -64px;
    padding: 0;
    margin: 0;
    width: 48px;
    top: -166px;
}

.item-noticia .card-body p:first-child {
    color: #0070bd;
    font-size: 12px;
}

.item-noticia .card {
    border: 0;
}

.item-noticia .card-body {
    padding: 15px 0 0 0;
}

.item-noticia .card svg {
    height: 20px;
}

.item-noticia .card-title {
    color: #3175bf;
    text-transform: uppercase;
}

/*Footer*/

.footer-section {
    background: url(images/bg-footer.jpg) no-repeat;
    background-size: 100%;
    background-position: 50% -34px;
    padding-top: 210px;
}

.menu-columns {
    display: flex;
    gap: 20px;
}

.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-list>li {
    margin-bottom: 10px;
}

.menu-list li ul.submenu {
    margin-left: 10px;
    padding-left: 10px;
    border-left: 2px solid #ccc;
    list-style: none;
}

.social-icons-footer i {
    color: #0070bd;
}

.social-icons-footer i:before {
    font-size: 16px;
}

/* Processo de ProduÃƒÆ’Ã‚Â§ÃƒÆ’Ã‚Â£o Section */
/* (Estilos similares aos de Content Sections) */

/* Video Section */
.video-section {
    background-color: #eef7ff;
    /* Fundo azul claro */
    padding: 60px 0;
    text-align: center;
}

.video-section h2 {
    margin-bottom: 2rem;
    color: #0056b3;
}

.video-section .ratio {
    max-width: 800px;
    /* Limitar largura do vÃƒÆ’Ã‚Â­deo */
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Wave Separator */
.wave-separator {
    /* Usar a imagem de onda real */
    background: url('../img/wave-separator.png') repeat-x bottom center;
    background-size: contain;
    /* Ou cover, ajustar conforme a imagem */
    height: 120px;
    /* Ajustar altura da onda */
    width: 100%;
    margin-top: -1px;
    /* Sobrepor levemente a seÃƒÆ’Ã‚Â§ÃƒÆ’Ã‚Â£o acima se necessÃƒÆ’Ã‚Â¡rio */
}

/* Footer */
footer {
    background-color: #f8f9fa;
    /* Cor de fundo clara */
    padding: 50px 0 30px;
    color: #555;
    font-size: 0.95rem;
}

footer h5 {
    color: #0056b3;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-transform: uppercase;
}

footer .list-unstyled li a {
    color: #555;
    padding: 0.2rem 0;
    display: block;
}

footer .list-unstyled li a:hover {
    color: #0056b3;
    text-decoration: none;
}

footer address {
    font-style: normal;
    line-height: 1.6;
}

footer .fa-phone,
footer .fa-mobile-alt,
footer .fa-envelope,
footer .fa-whatsapp {
    margin-right: 8px;
    color: #0056b3;
}

footer .social-icons a {
    color: #0056b3;
    font-size: 1.5rem;
    margin-right: 15px;
    transition: color 0.3s ease;
}

footer .social-icons a:hover {
    color: #003d80;
}

.footer-bottom {
    background-color: #e9ecef;
    /* Fundo ligeiramente mais escuro */
    padding: 15px 0;
    text-align: center;
    font-size: 0.9em;
    color: #6c757d;
}

/* Responsividade (Exemplos com Media Queries - Bootstrap jÃƒÆ’Ã‚Â¡ ajuda muito) */
@media (max-width: 991.98px) {
    body {
        padding-top: 70px;
        /* Ajustar para navbar menor em telas menores */
    }

    .navbar {
        min-height: 70px;
    }

    .hero-section h1 {
        font-size: 1.5rem;
    }

    .hero-section {
        padding: 80px 0 50px;
    }

    #diferenciais {
        top: -82px;
    }
}

@media (max-width: 767.98px) {
    .hero-section h1 {
        font-size: 1.5rem;
    }

    .content-section .col-md-6 {
        margin-bottom: 2rem;
    }

    footer .col-md-3 {
        margin-bottom: 2rem;
    }

    #diferenciais {
        top: 0 !important;
    }

    .padding-right {
        padding-right: 10% !important;
    }

    .padding-left {
        padding-left: 10% !important;
    }

}

/* Estilos de Acessibilidade (Base - serÃƒÆ’Ã‚Â£o aprimorados) */
*:focus {
    outline: 2px solid #0056b3;
    /* Destaque de foco visÃƒÆ’Ã‚Â­vel */
    outline-offset: 2px;
}

/* Adicionar classes para alto contraste posteriormente */
.high-contrast {
    /* Estilos de alto contraste serÃƒÆ’Ã‚Â£o definidos aqui */
}




/* --- High Contrast Styles --- */
body.high-contrast {
    background-color: #000 !important;
    color: #fff !important;
}

.high-contrast h1,
.high-contrast h2,
.high-contrast h3,
.high-contrast h4,
.high-contrast h5,
.high-contrast h6,
.high-contrast a,
.high-contrast .navbar-nav .nav-link,
.high-contrast .navbar-nav .nav-link.active,
.high-contrast footer h5,
.high-contrast footer .list-unstyled li a,
.high-contrast footer .fa-phone,
.high-contrast footer .fa-mobile-alt,
.high-contrast footer .fa-envelope,
.high-contrast .social-icons a {
    color: #ffff00 !important;
    /* Amarelo brilhante para destaque em fundo preto */
}

.high-contrast .navbar,
.high-contrast footer,
.high-contrast .footer-bottom,
.high-contrast .video-section {
    background-color: #111 !important;
    /* Fundo ligeiramente diferente para seÃƒÆ’Ã‚Â§ÃƒÆ’Ã‚Âµes */
    border-color: #ffff00 !important;
}

.high-contrast .content-section h2,
.high-contrast .image-gallery h2 {
    border-bottom-color: #ffff00 !important;
}

.high-contrast img,
.high-contrast .hero-section,
.high-contrast .wave-separator {
    filter: grayscale(100%) contrast(200%);
    /* Ajusta imagens para alto contraste */
}

.high-contrast button,
.high-contrast .btn {
    background-color: #000 !important;
    color: #ffff00 !important;
    border: 1px solid #ffff00 !important;
}

.high-contrast *:focus {
    outline-color: #ffff00 !important;
    /* Destaque de foco em amarelo */
}

/* Ocultar elementos puramente decorativos em alto contraste, se necessÃƒÆ’Ã‚Â¡rio */
/* .high-contrast .decorative-element { display: none !important; } */





/* --- Quem Somos Page Specific Styles --- */

/* Hero Section - Quem Somos */
.hero-quem-somos {
    /* Usar a imagem de fundo real da pÃƒÆ’Ã‚Â¡gina Quem Somos */
    background: url('../img/hero-background-quem-somos.jpg') no-repeat center center;
    background-size: cover;
    /* Herda outros estilos de .hero-section, mas pode ter ajustes especÃƒÆ’Ã‚Â­ficos */
    padding: 140px 0 100px;
    /* Ajustar padding se necessÃƒÆ’Ã‚Â¡rio */
}

/* Sobre NÃƒÆ’Ã‚Â³s Section */
.content-section img.img-fluid {
    max-height: 450px;
    /* Limitar altura da imagem se necessÃƒÆ’Ã‚Â¡rio */
    object-fit: cover;
    /* Para cobrir a ÃƒÆ’Ã‚Â¡rea sem distorcer */
}

/* Recognition Section (Carrossel) */
.recognition-section h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #0056b3;
    display: inline-block;
}

.recognition-section .carousel-inner p {
    color: #555;
    line-height: 1.5;
}

.recognition-section .carousel-control-prev-icon,
.recognition-section .carousel-control-next-icon {
    filter: invert(1) grayscale(100) brightness(1.5);
    /* ÃƒÆ’Ã‚Âcones mais visÃƒÆ’Ã‚Â­veis */
}

.recognition-section .carousel-indicators button {
    background-color: #0056b3;
    /* Cor dos indicadores */
}

/* PropÃƒÆ’Ã‚Â³sito e Valores Section */

.values-box {
    background-color: #004a99;
    /* Azul um pouco mais escuro que o principal */
    color: white;
    height: 100%;
    /* Para ocupar a altura da coluna */
}

.values-box h4 {
    color: #fff;
    /* TÃƒÆ’Ã‚Â­tulos brancos */
    margin-bottom: 0.8rem;
}

.values-box p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.values-box ul li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.values-box .fas {
    color: #61dafb;
    /* Cor de destaque para ÃƒÆ’Ã‚Â­cones (exemplo) */
}

/* Ajustes responsivos especÃƒÆ’Ã‚Â­ficos para Quem Somos, se necessÃƒÆ’Ã‚Â¡rio */
@media (max-width: 767.98px) {
    .hero-quem-somos {
        padding: 100px 0 60px;
    }

    .values-box {
        margin-top: 2rem;
    }
}

/* High Contrast adjustments for Quem Somos elements */
.high-contrast .hero-quem-somos {
    filter: grayscale(100%) contrast(200%);
}

.high-contrast .values-box {
    background-color: #1a1a1a !important;
    border: 1px solid #ffff00;
}

.high-contrast .values-box h4,
.high-contrast .values-box p,
.high-contrast .values-box ul li {
    color: #fff !important;
}

.high-contrast .values-box .fas {
    color: #ffff00 !important;
    /* ÃƒÆ’Ã‚Âcones em amarelo */
}

.high-contrast .recognition-section h2 {
    border-bottom-color: #ffff00 !important;
}

.high-contrast .recognition-section .carousel-inner p {
    color: #fff !important;
}

.carousel-inner img {
    width: 100%;
}

.carousel-item .container {
    width: 100%;
    margin: 0;
    display: table;
    max-width: 100%;
    padding: 0;
}

.carousel-item .container>div {
    position: absolute;
    width: 100%;
    top: 10%;
    left: 5%;
}

.high-contrast .recognition-section .carousel-indicators button {
    background-color: #ffff00 !important;
}

.high-contrast .recognition-section .carousel-control-prev-icon,
.high-contrast .recognition-section .carousel-control-next-icon {
    filter: none;
    /* Remover filtro invertido */
    background-color: rgba(255, 255, 0, 0.7) !important;
    /* Fundo amarelo */
}





/* --- Linha do Tempo Page Specific Styles --- */

/* Hero Section - Linha do Tempo */
.hero-linha-do-tempo {
    /* Usar a imagem de fundo real da pÃƒÆ’Ã‚Â¡gina Linha do Tempo */
    background: url('../img/hero-background-linha-do-tempo.jpg') no-repeat center center;
    background-size: cover;
    padding: 120px 0 80px;
    /* Ajustar padding */
}

.hero-linha-do-tempo p {
    font-size: 1rem;
    margin-bottom: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
}

/* Timeline Section */
.timeline-section h2 {
    color: #0056b3;
}

.timeline {
    position: relative;
    margin: 0 auto;
    padding: 40px 0;
}

/* The central line */
.timeline::after {
    content: '';
    position: absolute;
    width: 7px;
    background: url(images/bg_ln_linha_tempo.png);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3.5px;
    /* Usar background image para pontilhado se necessÃƒÆ’Ã‚Â¡rio */
    /* background-image: linear-gradient(to bottom, #007bff 5px, transparent 5px); */
    /* background-size: 3px 10px; */
}

/* Timeline item */
.timeline-item {
    padding: 10px 0px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

/* Water drop icon on the line */
.timeline-item::after {
    content: '';
    position: absolute;
    width: 25px;
    /* Tamanho da gota */
    height: 25px;
    right: -12.5px;
    background-image: url('images/icon_gota.png');
    /* Imagem da gota */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    top: 10px;
    /* Ajustar posiÃƒÆ’Ã‚Â§ÃƒÆ’Ã‚Â£o vertical */
    border-radius: 50%;
    z-index: 1;
}

/* Left items */
.timeline-item.left {
    left: 0;
    text-align: right;
}

/* Right items */
.timeline-item.right {
    left: 50%;
}

/* Fix the circle for right items */
.timeline-item.right::after {
    left: -12.5px;
}

/* Content box */
.timeline-content {
    background-color: #f8f9fa;
    /* Fundo claro para o conteÃƒÆ’Ã‚Âºdo */
    position: relative;
    border-radius: 6px;
    border: 1px solid #eee;
    padding: 20px 0;
}

.timeline-content h3 {
    margin-top: 0;
    color: #3395cf;
    font-size: 2.0rem;
    margin-bottom: 0.5rem;
}

.timeline-content p,
.timeline-content ul {
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #3395cf
}

.timeline-content ul {
    padding-left: 20px;
    list-style: disc;
}

.timeline-text {
    color: #3395cf !important;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {

    /* Place the timelime to the left */
    .timeline::after {
        left: 31px;
    }

    /* Full-width containers */
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
        text-align: left;
        /* Reset text align */
    }

    /* Make sure that all arrows are pointing leftwards */
    /* (Bootstrap doesn't use arrows here, but if custom arrows were added) */

    /* Make sure all circles are at the same spot */
    .timeline-item.left::after,
    .timeline-item.right::after {
        left: 18px;
        /* Ajustar posiÃƒÆ’Ã‚Â§ÃƒÆ’Ã‚Â£o da gota */
    }

    /* Make all right containers behave like the left ones */
    .timeline-item.right {
        left: 0%;
    }
}


/* Lista de clientes */
.clients-list {
    background-color: var(--light-bg);
}

.client-logo {
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
    MARGIN-TOP: -38PX;
}

.client-logo img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.client-content {
    padding: 1rem;
}

.client-website a {
    border-radius: 30px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    transition: all var(--transition-speed) ease;
}

/* High Contrast for Timeline */
.high-contrast .timeline::after {
    background-color: #ffff00 !important;
}

.high-contrast .timeline-item::after {
    filter: grayscale(100%) contrast(200%);
    /* Ajustar ÃƒÆ’Ã‚Â­cone da gota */
}

.high-contrast .timeline-content {
    background-color: #111 !important;
    border-color: #ffff00 !important;
}

.high-contrast .timeline-content h3 {
    color: #ffff00 !important;
}

.high-contrast .timeline-content p,
.high-contrast .timeline-content ul,
.high-contrast .timeline-content ul li {
    color: #fff !important;
}

.high-contrast .hero-linha-do-tempo {
    filter: grayscale(100%) contrast(200%);
}

.high-contrast .hero-linha-do-tempo p {
    color: rgba(255, 255, 255, 0.8) !important;
}





/* --- Onde Atuamos Page Specific Styles --- */

/* Hero Section - Onde Atuamos */
.hero-onde-atuamos {
    /* Usar a imagem de fundo real da pÃƒÆ’Ã‚Â¡gina Onde Atuamos */
    background: url('../img/hero-background-onde-atuamos.jpg') no-repeat center center;
    background-size: cover;
    padding: 140px 0 100px;
    /* Ajustar padding */
}

/* Map Section */
.map-section h2 {
    color: #0056b3;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #0056b3;
    display: inline-block;
}

.map-section img {
    border: 1px solid #ddd;
}

/* Stats Section */
.stats-section {
    background-color: #f8f9fa;
    /* Fundo claro para destacar os nÃƒÆ’Ã‚Âºmeros */
    padding: 60px 0;
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.stat-item {
    /* Adicionar estilos se necessÃƒÆ’Ã‚Â¡rio, mas Bootstrap columns cuidam do layout */
}

.stat-item img {
    opacity: 0.7;
    margin-bottom: 1rem;
    /* EspaÃƒÆ’Ã‚Â§o entre ÃƒÆ’Ã‚Â­cone e texto */
}

.stat-label {
    color: #555;
    font-size: 1rem;
    min-height: 3em;
    /* Garante altura mÃƒÆ’Ã‚Â­nima para alinhamento */
    margin-bottom: 0.5rem;
}

.stat-number {
    color: #0056b3;
    line-height: 1;
}

.stat-unit {
    color: #777;
    font-size: 1.1rem;
}

/* Responsive adjustments for Stats */
@media (max-width: 767.98px) {
    .stat-label {
        min-height: auto;
        /* Remove altura mÃƒÆ’Ã‚Â­nima em telas menores */
    }

    .stats-section {
        padding: 40px 0;
    }
}

/* High Contrast for Onde Atuamos */
.high-contrast .hero-onde-atuamos {
    filter: grayscale(100%) contrast(200%);
}

.high-contrast .map-section h2 {
    color: #ffff00 !important;
    border-bottom-color: #ffff00 !important;
}

.high-contrast .map-section img {
    filter: grayscale(100%) contrast(200%);
    border-color: #ffff00 !important;
}

.high-contrast .stats-section {
    background-color: #111 !important;
}

.high-contrast .stat-item img {
    filter: invert(1) brightness(3) contrast(200%);
    /* ÃƒÆ’Ã‚Âcones claros em fundo escuro */
    opacity: 1;
}

.high-contrast .stat-label,
.high-contrast .stat-unit {
    color: #ccc !important;
}

.high-contrast .stat-number {
    color: #ffff00 !important;
}





/* --- Agendar Visita Page Specific Styles --- */

/* Hero Section - Agendar Visita */
.hero-agendar-visita {
    /* Usar a imagem de fundo real da pÃƒÆ’Ã‚Â¡gina Agendar Visita */
    background: url('../img/hero-background-agendar-visita.jpg') no-repeat center center;
    background-size: cover;
    padding: 140px 0 100px;
    /* Ajustar padding */
}

/* Form Section */
.form-section h2 {
    color: #0056b3;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #0056b3;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.form-section fieldset {
    border: 1px solid #ddd;
    padding: 1.5rem;
    border-radius: 0.375rem;
    /* Bootstrap's default border radius */
    background-color: #fdfdfd;
}

.form-section legend {
    float: none;
    /* Override default legend float */
    width: auto;
    /* Override default legend width */
    padding: 0 10px;
    /* Spacing around legend text */
    font-size: 1.2rem;
    /* Adjust legend font size */
    color: #0056b3;
    font-weight: 500;
}

.form-label {
    font-weight: 500;
    color: #555;
    margin-bottom: 0.3rem;
}

.form-control,
.form-select {
    background-color: #f0f0f0;
    /* Light gray background for inputs */
    border: 1px solid #ccc;
}



.form-text {
    font-size: 0.85em;
    color: #6c757d;
}

/* Styling for radio/checkbox groups */
#deficiency-question {
    font-weight: 500;
    color: #555;
    margin-bottom: 0.5rem;
}

#deficiency-type-label {
    font-weight: 500;
    color: #555;
    margin-bottom: 0.5rem;
}

.form-check-label {
    color: #555;
}

/* Terms checkbox */
.form-check a {
    text-decoration: underline;
}

.form-check a:hover {
    color: #003d80;
}

/* Submit Button */
.btn-primary {
    background-color: #0056b3;
    border-color: #0056b3;
    padding: 0.75rem 1.5rem;
}

.btn-primary:hover {
    background-color: #003d80;
    border-color: #003d80;
}

/* Responsive adjustments for form */
@media (max-width: 767.98px) {
    .form-section fieldset {
        padding: 1rem;
    }

    .form-section legend {
        font-size: 1.1rem;
    }

    /* Stack checkboxes/radios if needed */
    .form-check-inline {
        display: block;
        margin-bottom: 0.5rem;
    }

    #other-deficiency-detail {
        width: 100% !important;
        margin-top: 0.5rem;
    }
}

/* High Contrast for Agendar Visita */
.high-contrast .hero-agendar-visita {
    filter: grayscale(100%) contrast(200%);
}

.high-contrast .form-section h2 {
    color: #ffff00 !important;
    border-bottom-color: #ffff00 !important;
}

.high-contrast .form-section p {
    color: #fff !important;
}

.high-contrast .form-section fieldset {
    background-color: #111 !important;
    border-color: #ffff00 !important;
}

.high-contrast .form-section legend {
    color: #ffff00 !important;
    background-color: #111;
    /* Match fieldset background */
}

.high-contrast .form-label,
.high-contrast #deficiency-question,
.high-contrast #deficiency-type-label,
.high-contrast .form-check-label {
    color: #fff !important;
}

.high-contrast .form-control,
.high-contrast .form-select {
    background-color: #222 !important;
    border-color: #ffff00 !important;
    color: #fff !important;
}

.high-contrast .form-control::placeholder {
    color: #aaa !important;
}

.high-contrast .form-select option {
    background-color: #222;
    color: #fff;
}

.high-contrast .form-control:focus,
.high-contrast .form-select:focus,
.high-contrast .form-check-input:focus {
    border-color: #ffff00 !important;
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 0, 0.3) !important;
    background-color: #333 !important;
}

.high-contrast .form-check-input {
    background-color: #222 !important;
    border-color: #ffff00 !important;
}

.high-contrast .form-check-input:checked {
    background-color: #ffff00 !important;
    border-color: #ffff00 !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23000'/%3e%3c/svg%3e");
    /* Dot for radio */
}

.high-contrast .form-check-input[type="checkbox"]:checked {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e") !important;
    /* Check for checkbox */
}

.high-contrast .form-text {
    color: #ccc !important;
}

.high-contrast .form-check a {
    color: #ffff00 !important;
}

.high-contrast .btn-primary {
    background-color: #000 !important;
    border-color: #ffff00 !important;
    color: #ffff00 !important;
}

.high-contrast .btn-primary:hover {
    background-color: #222 !important;
    border-color: #ffff00 !important;
    color: #ffff00 !important;
}





/* --- NotÃƒÆ’Ã‚Â­cias Page Specific Styles --- */

/* Hero Section - NotÃƒÆ’Ã‚Â­cias */
.hero-noticias {
    /* Usar a imagem de fundo real da pÃƒÆ’Ã‚Â¡gina NotÃƒÆ’Ã‚Â­cias */
    background: url("../img/hero-background-noticias.jpg") no-repeat center center;
    background-size: cover;
    padding: 140px 0 100px;
    /* Ajustar padding */
}

/* News List Section */
.news-list-section h2 {
    color: #0056b3;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #0056b3;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.news-list-section .row>div {
    padding: 15px 30px;
}

.news-card {
    border: 0;
    transition: box-shadow 0.3s ease-in-out;
}

.news-card:hover,
.news-card:focus-within {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.news-card .card-img-top {
    aspect-ratio: 16 / 9;
    /* Maintain aspect ratio for images */
    object-fit: cover;
}

.news-card .card-title a {
    color: #000;
    text-decoration: none;
    font-weight: bold;
}

.news-card .card-title a:hover,
.news-card .card-title a:focus {
    color: #003d80;
    text-decoration: underline;
}

.news-card .card-text {
    font-size: 0.9rem;
    /* color: #555; */
    color: #0056b3 !important;
}

/* Pagination */

.page-link {
    padding: 15px 19px;
}

.pagination .page-link-numero {
    color: #000;
    border: 0;
    margin: 0 2px;
    /* Small gap between buttons */
    border-radius: 0.25rem;
}

.pagination .btn {
    border: 1px solid #2c6efd;
}

.page-button,
.btn,
.pagination .btn {
    PADDING: 17PX 21px 14px;
    display: table;
    border-radius: 10px !important;
    font-weight: bold;
    font-size: 15px;
    background: transparent;
}

.pagination .page-button {

    border: 1px solid #0070bd;
    color: #0070bd;

}

.pagination .page-link:hover,
.pagination .page-link:focus {
    color: #003d80;
    background-color: #e9ecef;
    box-shadow: none;
}

.pagination .page-item.active .page-link {
    z-index: 3;
    color: #000;
    background-color: #c7e2f2;
    border-color: #0056b3;
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #fff;
    border-color: #dee2e6;
}

/* High Contrast for NotÃƒÆ’Ã‚Â­cias */
.high-contrast .hero-noticias {
    filter: grayscale(100%) contrast(200%);
}

.high-contrast .news-list-section h2 {
    color: #ffff00 !important;
    border-bottom-color: #ffff00 !important;
}

.high-contrast .news-card {
    background-color: #111 !important;
    border-color: #ffff00 !important;
}

.high-contrast .news-card .card-img-top {
    filter: grayscale(100%) contrast(200%);
}

.high-contrast .news-card .card-text,
.high-contrast .news-card .small {
    color: #ccc !important;
}

.high-contrast .news-card .card-title a {
    color: #ffff00 !important;
}

.high-contrast .news-card .card-title a:hover,
.high-contrast .news-card .card-title a:focus {
    color: #ffff00 !important;
    background-color: #333 !important;
    text-decoration: underline;
}

.high-contrast .pagination .page-link {
    background-color: #222 !important;
    border-color: #ffff00 !important;
    color: #ffff00 !important;
}

.high-contrast .pagination .page-link:hover,
.high-contrast .pagination .page-link:focus {
    background-color: #333 !important;
    color: #ffff00 !important;
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 0, 0.3) !important;
}

.high-contrast .pagination .page-item.active .page-link {
    background-color: #ffff00 !important;
    border-color: #ffff00 !important;
    color: #000 !important;
}

.high-contrast .pagination .page-item.disabled .page-link {
    color: #555 !important;
    background-color: #222 !important;
    border-color: #555 !important;
}





/* --- Contato Page Specific Styles --- */


.hero-contato {
    padding: 140px 0 100px;
    /* Ajustar padding */
    position: relative;
    background-size: cover;
    background-position: center;
    height: 400px;
    /* ou o tamanho desejado */
    color: white;
    /* conteÃƒÆ’Ã‚Âºdo em cima da imagem */
    z-index: 0;
}

/*.hero-contato::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 80, 0.2); /* azul escuro com 30% de opacidade *
  z-index: 1;
}*/

.hero-contato>* {
    position: relative;
    z-index: 2;
}

/* Address & Map Section */
.address-map-section h2 {
    color: #0056b3;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #0056b3;
    display: inline-block;
    margin-bottom: 1rem;
}

.address-map-section address {
    font-style: normal;
    line-height: 1.6;
    color: #555;
}

.address-map-section p a {
    color: #0056b3;
    text-decoration: none;
}

.address-map-section p a:hover,
.address-map-section p a:focus {
    color: #003d80;
    text-decoration: underline;
}

.address-map-section h3 {
    color: #333;
}

.address-map-section figure img,
.address-map-section figure iframe {
    border: 1px solid #ddd;
    max-width: 100%;
    height: auto;
    /* Adjust height for iframe if needed */
}

/* Contact Form Section */
.contact-form-section h2 {
    color: #0056b3;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #0056b3;
    display: inline-block;
    margin-bottom: 1.5rem;
}

/* Reusing form styles from Agendar Visita where applicable */
.contact-form-section .form-label {
    font-weight: 500;
    color: #555;
    margin-bottom: 0.3rem;
}

.contact-form-section .form-control,
.contact-form-section .form-select {
    background-color: #f0f0f0;
    border: 1px solid #ccc;
}

.contact-form-section .form-control:focus,
.contact-form-section .form-select:focus {
    border-color: #0056b3;
    box-shadow: 0 0 0 0.25rem rgba(0, 86, 179, 0.25);
    background-color: #fff;
}

.contact-form-section textarea.form-control {
    min-height: 120px;
}

/* reCAPTCHA Placeholder Style */
.g-recaptcha-placeholder {
    border: 1px dashed #ccc;
    background-color: #f9f9f9;
    color: #999;
    text-align: center;
    padding: 1rem;
}

/* High Contrast for Contato */
.high-contrast .hero-contato {
    filter: grayscale(100%) contrast(200%);
}

.high-contrast .address-map-section h2,
.high-contrast .contact-form-section h2 {
    color: #ffff00 !important;
    border-bottom-color: #ffff00 !important;
}

.high-contrast .address-map-section address,
.high-contrast .address-map-section p,
.high-contrast .address-map-section h3 {
    color: #fff !important;
}

.high-contrast .address-map-section p a {
    color: #ffff00 !important;
}

.high-contrast .address-map-section figure img,
.high-contrast .address-map-section figure iframe {
    filter: grayscale(100%) contrast(200%);
    border-color: #ffff00 !important;
}

.high-contrast .contact-form-section .form-label {
    color: #fff !important;
}

.high-contrast .contact-form-section .form-control,
.high-contrast .contact-form-section .form-select {
    background-color: #222 !important;
    border-color: #ffff00 !important;
    color: #fff !important;
}

.high-contrast .contact-form-section .form-control::placeholder {
    color: #aaa !important;
}

.high-contrast .contact-form-section .form-select option {
    background-color: #222;
    color: #fff;
}

.high-contrast .contact-form-section .form-control:focus,
.high-contrast .contact-form-section .form-select:focus {
    border-color: #ffff00 !important;
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 0, 0.3) !important;
    background-color: #333 !important;
}

.high-contrast .g-recaptcha-placeholder {
    background-color: #222 !important;
    border-color: #ffff00 !important;
    color: #ccc !important;
}

.high-contrast .contact-form-section .form-text,
.high-contrast .contact-form-section .form-text a {
    color: #ccc !important;
}

.high-contrast .contact-form-section .form-text a {
    color: #ffff00 !important;
}

.high-contrast .btn-primary {
    background-color: #000 !important;
    border-color: #ffff00 !important;
    color: #ffff00 !important;
}

.high-contrast .btn-primary:hover {
    background-color: #222 !important;
    border-color: #ffff00 !important;
    color: #ffff00 !important;
}

/* Secao de arquivos */
.arquivos-section {
    padding: 60px 0;
}

.section-divider {
    width: 50px;
    height: 3px;
    background-color: var(--section-divider);
    margin-bottom: 30px;
}

.section-description {
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.arquivo-item {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    align-items: center;
}

.arquivo-titulo {
    font-size: 1rem;
    font-weight: 100;
    margin: 0;
    color: #333;
}

.btn-download {
    color: #0056b3;
    border: 1px solid #0056b3;
    border-radius: 10px;
    padding: 10px 20px 8px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-download:hover,
.btn-download:focus {
    background-color: #0056b3;
    color: #fff;
    text-decoration: none;
}

.btn-download i {
    margin-left: 5px;
}

.arquivos-lista>div div:first-child {
    width: 40%;
}

/*Home*/

.diferenciais>div {
    border-left: 1px solid #fff;
}

.diferenciais>div:first-child {
    border-left: 0;
    border-radius: 10px 0 0 10px;
}

.diferenciais>div:last-child {
    border-radius: 0 10px 10px 0;
}

#diferenciais {
    top: -82px;
}

section.aquapolo-reutilizometro-section.position-relative {
    top: -157px;
}


.carousel-reciclagem .carousel-item>div {
    width: 90%;
    margin: 0 auto;
}

.carousel-reciclagem .carousel-item>div div {
    width: 30%;
    margin: 0 10px;
}

.carousel-control-prev.reciclagem {
    left: -65px;
}

.carousel-control-next.reciclagem {
    right: -65px;
}

.carousel-indicators-reciclagem {
    bottom: -40px;
}

.section-estatistica {
    background: url(images/logo_big.png) no-repeat;
    background-position: top center;
    background-size: 100%;
    padding-top: 281px;
    padding-bottom: 3rem;
}

.form-label {
    font-size: 15px;
}

.data-noticia {
    color: #3395cf;
}


/* Componentes do menu direito */
.menu-right-components {
    display: flex;
    align-items: center;
}

/* Componente de busca */
.search-component {
    position: relative;
    margin-right: 15px;
}

.search-icon-btn {
    background: transparent;
    border: none;
    color: var(--light-text);
    font-size: 1.2rem;
    padding: 0.25rem 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
}

.search-icon-btn:hover,
.search-icon-btn:focus {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-text);
}

.search-form-container {
    position: absolute;
    top: 100%;
    right: 0;
    width: 0;
    overflow: hidden;
    background-color: #ccc;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    z-index: 1000;
    margin-top: 5px;
}

.search-form-container.active {
    width: 300px;
    opacity: 1;
}

.search-form {
    display: flex;
    align-items: center;
    padding: 8px;
}

.search-field {
    flex-grow: 1;
    border: none;
    padding: 8px 12px;
    font-size: 0.9rem;
    outline: none;
}

.search-submit,
.search-close {
    background: transparent;
    border: none;
    color: var(--primary-color);
    padding: 8px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.search-submit:hover,
.search-close:hover,
.search-submit:focus,
.search-close:focus {
    color: var(--secondary-color);
}

/* Seletor de idioma */
.language-selector {
    position: relative;
    padding-right: 50px;
}

.language-toggle {
    background-color: transparent;
    color: #3498db;
    /* Cor azul para o BR conforme imagem */
    border: none;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.language-code {
    margin-right: 5px;
}

.language-toggle .fa-chevron-down {
    font-size: 0.7rem;
}

.language-toggle:hover,
.language-toggle:focus {
    color: var(--light-text);
}

.language-selector .dropdown-menu {
    min-width: 120px;
    padding: 0.5rem 0;
    margin-top: 5px;
}

.language-selector .dropdown-item {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.language-selector .dropdown-item.active {
    background-color: rgba(52, 152, 219, 0.1);
    color: #3498db;
}

.language-selector .dropdown-item:hover,
.language-selector .dropdown-item:focus {
    background-color: rgba(52, 152, 219, 0.2);
}

/* fim Componentes do menu direito */

/********************SUSTENTABILIDADE*************************/

.ods-card {
    color: #42536f;
}

.bt-ver-certificacao {
    color: #42536f;
    text-transform: uppercase;
    margin-top: 20px;
    display: block;
}

.card-objetivo h3 {
    font-size: 24px;
}

.card-objetivo h4 {
    font-size: 20px;
}

.card-objetivo .ods-icon {
    text-align: center;
}

.card-objetivo .ods-icon img {
    width: 50%;
}

.img-pilares {
    height: 100px;
}

.img-relatorio {
    height: 228px;
    width: 353px;
}

/**********************ACIONISTAS***********************/

.marca-acionistas img {
    max-width: 402px;
}

.navbar-toggler {
    background-color: #fff;
}

.logo-footer svg {
    width: 75%;
    margin-bottom: 20px;
}

.carousel-control-next,
.carousel-control-prev {
    width: 40px;
}

/*********************COMPLIANCE*************************/

.relatorio-arquivos {
    padding-left: 0;
}

.relatorio-arquivos li {
    list-style: none;
    margin-bottom: 10px;
}

.relatorio-arquivos .btn-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    /* azul forte igual ao da imagem */
    border: 1px solid #005fa3;
    color: #005fa3;
    font-size: 15px;
    font-weight: 500;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.25s;
}

.relatorio-arquivos .btn-download:hover {
    background: #0074c7;
    transform: translateY(-2px);
}

.relatorio-arquivos .download-icon {
    font-size: 16px;
    opacity: 0.9;
}

/* --- CSS Responsivo Home --- */
@media (max-width: 991px) {

    /* Ajustes Gerais Home */
    .hero-section {
        padding-top: 80px;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-icons {
        top: auto;
        bottom: 0;
        position: relative !important;
        margin-top: 30px;
        width: 100%;
    }

    #diferenciais {
        top: 0;
    }

    .diferenciais>a {
        padding: 15px !important;
    }

    /* Reconhecimentos Carousel */
    #reconhecimentosCarousel .col-3 {
        width: 100% !important;
        margin-bottom: 20px;
    }

    #reconhecimentosCarousel .carousel-inner .row {
        flex-direction: column;
        align-items: center;
    }

    /* Banner Informativo */
    .banner-informativo-section {
        margin-top: 30px;
    }

    .banner-informativo {
        width: 95%;
        margin: 0 auto;
    }

    .banner-conteudo {
        position: relative;
        padding: 30px;
        align-items: center;
        text-align: center;
        background: rgba(0, 0, 0, 0.4);
        border-radius: 12px;
    }

    .banner-texto {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .banner-informativo .personagem {
        display: none;
    }

    .banner-imagem {
        position: absolute;
        height: 100%;
        width: 100%;
        object-fit: cover;
        top: 0;
        left: 0;
        border-radius: 12px;
    }

    /* Sobre Nos */
    .sobre-nos-section {
        padding-top: 50px !important;
        margin-top: 0;
        background-position-y: center;
    }

    /* Estatistica */
    .section-estatistica {
        padding-top: 50px;
        background-size: auto 100%;
    }

    .stats-row {
        flex-wrap: wrap;
        justify-content: center;
    }

    .stats-row>div {
        width: 50%;
        margin-bottom: 30px;
    }

    .stats-row>div div {
        font-size: 50px;
    }

    .stats-row .icon {
        margin-top: 0;
    }

    /* Clientes */
    .clientes-lista {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .clientes-lista li {
        flex: 0 0 45%;
    }
}

@media (max-width: 767px) {

    /* Ajustes Mobile Adicionais */
    .hero-section h1 {
        font-size: 1.5rem;
    }

    .stats-row>div {
        width: 100%;
    }

    .clientes-lista li {
        flex: 0 0 100%;
    }

    .sobre-nos-section {
        background-image: none !important;
        background-color: #f8f9fa;
    }

    .footer-section {
        padding-top: 20px !important;
    }

    .assiste-video {
        margin: 12px 0 !important;
        display: table !important;
    }

    /**23/03/2026***/

    body {
        padding-top: 0px;
    }

    .bg-video {
        display: none !important;
    }

    .industria-branco * {
        color: #007ac3 !important;
    }

    .industria {
        border-top: 1px solid #007ac3;
    }

    /**23/03/2026 fim***/
}