:root {
    --background-color: #f9f4ee;
    --nav-color: rgb(8, 19, 169);
    --nav-hover-color: rgb(106, 114, 233);
    --nav-focus-color: rgb(106, 114, 233);
    --font-family: "Poppins", sans-serif;
    --title-font-size: 3rem;
    --title-font-weight: 800;

    --mobile-title-font-size: 2rem;
    --mobile-title-font-weight: 600;

    --cinza-claro: #f5f5f5;
    --cinza-escuro: #333;
    --cor-principal: #007bff;
    --fundo-principal: #f9f4ee;
    --fundo-transparente: transparent !important;
    --surface-color: #f9f4ee;
    --cor-secundaria: #6c757d;
    --item-hover: #d1e9ff;
    --header-border-bottom: rgba(0, 0, 0, 0.25);

    --navbar-height-desktop: 60px;
    --navbar-height-large-screen: 60px; /* Altura em 2560x1080 */

    --blue-main: rgba(0, 130, 188, 1);
    --bg-left: rgba(249, 246, 237, 1);
    --shadow-main: rgba(0, 0, 0, 0.25) 0px 3px 3px 0px;

    --bd-violet-bg: rgb(96, 32, 245);
    --bs-white: #fff;
}

body {
    font-family: var(--font-family);
    background-color: var(--fundo-principal);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0 !important;
    box-shadow:
        rgba(0, 0, 0, 0.1) 0px 4px 6px -1px,
        rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

header h1 {
    font-size: 2.5rem;
    color: var(--cinza-escuro);
    margin: 0;
}

.header .logo img {
    max-height: 46px;
    margin-right: 8px;
    outline: none !important;
}

/*--------------------------------------------------------------
# Header Navigation
--------------------------------------------------------------*/

.main-nav {
    width: 100%;
}

@media (min-width: 640px) {
    .main-nav {
        max-width: 640px;
    }
}

@media (min-width: 768px) {
    .main-nav {
        max-width: 768px;
    }
}

@media (min-width: 1024px) {
    .main-nav {
        max-width: 1024px;
    }
}

@media (min-width: 1280px) {
    .main-nav {
        max-width: 1280px;
    }
}

@media (min-width: 1536px) {
    .main-nav {
        max-width: 1536px;
    }
}

.main-nav {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-list > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(1rem * var(--tw-space-x-reverse));
    margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
}

@media (min-width: 768px) {
    .nav-list > :not([hidden]) ~ :not([hidden]) {
        --tw-space-x-reverse: 0;
        margin-right: calc(1.5rem * var(--tw-space-x-reverse));
        margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse)));
    }
}

.nav-link {
    border-radius: 0.375rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 700 !important;
    --tw-text-opacity: 1;
    color: var(--nav-color);
    transition-property:
        color, background-color, border-color, text-decoration-color, fill,
        stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

.nav-link:hover {
    color: var(--nav-hover-color);
}

@media (min-width: 1200px) {
    .navmenu li:hover > a,
    .navmenu .active,
    .navmenu .active:focus,
    .navmenu a:focus {
        color: var(--nav-focus-color);
        font-weight: 700 !important;
        font-size: 1.125rem;
    }

    .navmenu .active,
    .navmenu .active:hover > a,
    .navmenu .active:focus,
    .navmenu a:focus {
        color: var(--nav-focus-color) !important;
        padding: 0.5rem !important;
    }
}

@media (min-width: 1200px) {
    .navmenu > ul > li > a.nav-link {
        position: relative;
        padding-bottom: 0.5rem;
    }

    .navmenu > ul > li > a.nav-link::before {
        content: "";
        position: absolute;
        height: 2px;
        bottom: 0px;
        left: 0;
        background-color: green;
        visibility: hidden;
        width: 0px;
        transition: all 0.3s ease-in-out 0s;
    }

    .navmenu > ul > li > a.nav-link.active::before {
        visibility: visible;
        width: 100%;
    }

    .navmenu > ul > li > a.nav-link.page-active {
        color: var(--nav-focus-color) !important;
    }
    .navmenu > ul > li > a.nav-link.page-active::before {
        visibility: visible !important;
        width: 100% !important;
    }

    .navmenu > ul > li > a.nav-link.contact-active {
        color: var(--nav-focus-color) !important;
    }
    .navmenu > ul > li > a.nav-link.contact-active::before {
        visibility: visible !important;
        width: 100% !important;
    }

    .navmenu > ul > li > a.contact-link:not(.contact-active) {
        color: var(--nav-color) !important;
    }

    .navmenu > ul > li > a.contact-link:not(.contact-active):hover {
        color: var(--nav-hover-color) !important;
    }

    .navmenu > ul > li > a.contact-link:not(.contact-active)::before,
    .navmenu > ul > li.active > a.contact-link:not(.contact-active)::before {
        visibility: hidden !important;
        width: 0px !important;
    }
}

@media (max-width: 1199px) {
    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-color);
        padding: 10px 20px !important;
        font-family: var(--font-family);
        font-size: 1.0625rem;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }
}

/*-------------------------------------------------------------
# Banners Home
*/
.banners.section {
    margin: 30px 0 0 0 !important;
    background-color: #f9f4ee;
}

.carousel-indicators::marker {
    display: none !important;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.hero {
    padding: 0;
    background-color: #f9f4ee;
}

.hero .carousel {
    width: 100%;
    min-height: 60vh;
    padding: 0;
    margin-top: var(--navbar-height-desktop);
    background-color: var(--background-color);
    position: relative;
}

.hero img {
    position: relative;
    inset: 0;
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    z-index: 1;
}

.hero .carousel-item {
    position: relative;
    min-height: 39.8vw;
    overflow: hidden;
}

.hero .carousel-item:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 30%);
    position: absolute;
    inset: 0;
    z-index: 2;
}

.hero .carousel-item::before {
    content: "";
    background-color: color-mix(
        in srgb,
        var(--background-color),
        transparent 30%
    );
    position: absolute;
    inset: 0;
}

.hero .carousel-container {
    position: absolute;
    inset: 120px 64px 64px 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 3;
}

.hero h2 {
    margin-bottom: 30px;
    font-size: 3rem;
    font-weight: 700;
    animation: fadeInDown 1s both;
}

.hero .carousel-item .container {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 3;
}

.hero .carousel-item::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
}

.hero-content h2 {
    color: #ffffff;
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 0px;
}

.hero-content p {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.2 !important;
    max-width: 600px !important;
}

@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 28px;
    }
    .hero-content p {
        font-size: 16px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-text {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwars;
}

.delay-1 {
    animation-delay: 0.3s;
}
.delay-2 {
    animation-delay: 0.6s;
}

.hero-content-wrapper {
    position: absolute;
    inset: 0;
    display: flex;
    padding: 0 10%;
    z-index: 3;
}

.content-center {
    justify-content: center;
    align-items: center;
    text-align: center;
}

.content-left {
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    margin-left: -25px !important;
}

@media (max-width: 768px) {
    .hero {
        min-height: 0vh;
    }

    .hero h2 {
        font-size: 1.875rem;
        margin: 30px 0 10px 0 !important;
    }

    .hero .carousel {
        height: 41.67vw;
        min-height: auto;
        padding: 0;
    }

    .hero .carousel-item {
        height: 100%;
    }

    .hero img {
        height: 100%;
        width: 100%;
        object-fit: contain;
    }

    .hero .carousel-container {
        inset: 0;
        padding: 1rem;
    }

    .hero .btn-get-started {
        display: none !important;
    }

    .hero-content h2 {
        color: #ffffff;
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .hero-content p {
        color: #ffffff;
        font-size: 14px;
        line-height: 1.5 !important;
        max-width: 500px !important;
        margin: 0 auto 30px auto !important;
    }

    .content-left {
        margin-left: -10px !important;
    }

    .hero .carousel-item::before {
        background: rgba(0, 0, 0, 0.15);
    }
}

.hero p {
    animation: fadeInUp 1s both 0.2s;
}

@media (min-width: 1024px) {
    .hero h2,
    .hero p {
        max-width: 100%;
    }
}

.hero .btn-get-started {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-weight: 500;
    font-size: 0.9375rem;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 32px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    animation: fadeInUp 1s both 0.4s;
}

.hero .btn-get-started:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
    width: 10%;
    transition: 0.3s;
    opacity: 0.5;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
    opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
    opacity: 0.9;
}

@media (min-width: 1024px) {
    .hero .carousel-control-prev,
    .hero .carousel-control-next {
        width: 5%;
    }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
    background: none;
    font-size: 2rem;
    line-height: 1;
}

.hero .carousel-indicators {
    list-style: none;
}

.hero .carousel-indicators li {
    cursor: pointer;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0'/%3e%3c/svg%3e") !important;
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708'/%3e%3c/svg%3e");
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    background-size: 50%;
    filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.5));
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.8);
}

/*
Arrow Scroll Down
*/
.mouse-scroll {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    transition:
        opacity 0.5s,
        visibility 0.5s;
    opacity: 1;
    visibility: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    z-index: 999;
    text-decoration: none;
}

.mouse-scroll.hide-scroll {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid #fff;
    border-radius: 20px;
    position: relative;
    margin-bottom: 5px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: #fff;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scrollWheel 1.5s infinite;
}

.mouse-arrows span {
    display: block;
    width: 20px;
    height: 20px;
    border-right: 2px solid #ffff00;
    border-bottom: 2px solid #ffff00;
    transform: rotate(45deg);
    margin: -3px auto;
    animation: arrowFade 1.5s infinite;
    filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.6));
}

.mouse-arrows span:nth-child(2) {
    animation-delay: 0.2s;
}

@media (max-width: 768px) {
    .mouse-scroll {
        display: none !important;
    }
}

@keyframes scrollWheel {
    0% {
        top: 10px;
        opacity: 1;
    }

    100% {
        top: 30px;
        opacity: 0;
    }
}

@keyframes arrowFade {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about-section {
    background-color: #f9f4ee;
    padding: auto 1rem;
}
section.about-section {
    padding-bottom: 0.1rem;
}
.about-content {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

/* Regra para tablet e desktop */
@media (min-width: 768px) {
    .about-content {
        flex-direction: row;
        max-width: 1280px;
    }
}

.about-image-col {
    display: flex;
    width: 100%;
    justify-content: center;
}

@media (min-width: 768px) {
    .about-image-col {
        width: 50%;
        justify-content: flex-end;
    }
}

.about-image {
    height: auto;
    max-width: 100%;
    padding-left: 0;
    border-radius: 0.75rem;
    --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
    box-shadow:
        var(--tw-ring-offset-shadow, 0 0 #0000),
        var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

@media (min-width: 768px) {
    .about-image {
        padding-left: 40px;
    }
}

.about-text-col {
    width: 100%;
    text-align: center;
}

@media (min-width: 768px) {
    .about-text-col {
        width: 100%;
        margin: 0 30px !important;
        text-align: left;
    }
}

.about-title {
    margin-bottom: 1.5rem;
    font-size: var(--title-font-size);
    line-height: 1;
    font-weight: var(--title-font-weight);
    --tw-text-opacity: 1;
    color: rgb(59 130 246 / var(--tw-text-opacity, 1));
}

.about-description {
    padding-right: 0;
    font-size: 1.125rem;
    line-height: 1.625;
}

@media (min-width: 768px) {
    .about-description {
        padding: 0.5rem;
    }
}

@media (max-width: 768px) {
    .about-image {
        max-width: 80% !important;
        margin-top: -60px !important;
    }

    section.about-section {
        padding-bottom: 0.1rem;
    }

    .about-description {
        padding: 1.5rem;
    }
}

/*--------------------------------------------------------------
# CTA Section
--------------------------------------------------------------*/

.cta-section-cards {
    display: flex;
    flex-direction: column;
    background-color: #f9f4ee;
}

@media (min-width: 768px) {
    .cta-section-cards {
        flex-direction: row;
    }
}

.cta-card {
    flex: 1 1 0%;
    border-radius: 0px;
    padding: 3.5rem;
    text-align: center;
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
    --tw-shadow:
        0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --tw-shadow-colored:
        0 4px 6px -1px var(--tw-shadow-color),
        0 2px 4px -2px var(--tw-shadow-color);
    box-shadow:
        var(--tw-ring-offset-shadow, 0 0 #0000),
        var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.pillar-item:nth-child(1) {
    --tw-bg-opacity: 1;
    background-color: rgb(31 129 254 / var(--tw-bg-opacity, 1));
}

.pillar-item:nth-child(2) {
    --tw-bg-opacity: 1;
    background-color: rgb(255 106 55 / var(--tw-bg-opacity, 1));
}

.pillar-item:nth-child(3) {
    --tw-bg-opacity: 1;
    background-color: rgb(253 175 42 / var(--tw-bg-opacity, 1));
}

.cta-card-title {
    font-size: var(--title-font-size);
    font-weight: var(--title-font-weight);
    color: white;
    line-height: 95%;
    letter-spacing: 0%;
    text-align: left !important;
}

.cta-card-description,
.cta-card p {
    font-weight: 500;
    font-style: normal;
    font-size: 1.125rem;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: left !important;
}

/*--------------------------------------------------------------
# Areas of Activity Section
--------------------------------------------------------------*/

.areas-activity {
    padding: 60px 0;
    background-color: #f9f4ee;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center !important;
    margin: auto;
}

.section-title-areas h2 {
    font-size: var(--title-font-size);
    font-weight: var(--title-font-weight);
    color: #184187;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    text-align: center !important;
}

.section-title-areas h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: #184187;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

/* Reseta margens, paddings e box-sizing para evitar conflitos */
.carousel-container *,
.carousel-container *::before,
.carousel-container *::after {
    box-sizing: content-box;
}

/* Reseta margens e paddings para evitar conflitos com o Bootstrap */
.carousel-container p,
.carousel-container img,
.carousel-container h1,
.carousel-container h2,
.carousel-container h3,
.carousel-container h4,
.carousel-container h5,
.carousel-container h6 {
    margin: 0;
    padding: 0;
}

/* Reseta margens e paddings de elementos para evitar conflitos */
.carousel-container p,
.carousel-container img {
    margin: 0;
    padding: 0;
}

.carousel-container {
    display: flex;
    align-items: center;
    text-align: center !important;
    margin: auto;
}

.carousel-track-wrapper {
    /* Largura fixa do wrapper. O Bootstrap pode ter padding que afeta a largura total. */
    width: 895px;
    overflow: hidden;
    text-align: center !important;
    margin: auto;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

/* Novo estilo para o item do carousel */
.carousel-track .carousel-item {
    position: relative;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 216px;
    padding: 0px;
    flex-shrink: 0;
    margin: 15px 10px;
    text-align: center;
    box-shadow: rgba(33, 35, 38, 0.3) 0px 10px 10px -10px;
    border-radius: 30px;
    background-image: linear-gradient(to bottom, transparent, white);
}

.carousel-track .carousel-img {
    position: static !important;
    width: 216px;
    height: 187px;
    object-fit: cover;
    margin-bottom: 5px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    background-color: transparent !important;
}

.carousel-track .carousel-caption {
    position: static !important;
    font-weight: 600;
    font-style: normal;
    font-size: 0.99em;
    color: #1c3fbf;
    padding: 0 15px;
    margin-bottom: 5px;
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.nav-btn {
    background: rgba(222, 236, 247, 0);
    color: rgb(141, 177, 232);
    border: none;
    cursor: pointer;
    font-size: 2.5em;
    padding: 0 10px;
    height: 144px;
    user-select: none;
    -webkit-user-select: none;
    transition: background 0.3s ease;
}

.nav-btn:hover {
    color: rgb(7, 99, 238);
}

.nav-btn:active {
    color: rgb(141, 178, 232);
}

@media (max-width: 768px) {
    .carousel-track .carousel-item {
        padding: 0px;
        margin: 15px 46px;
        text-align: center;
    }
    .section-title-areas h2 {
        font-size: 1.875rem;
    }

    .nav-btn {
        width: 30px;
        height: 30px;
    }
}
/*
@media (max-width: 620px) {
    .carousel-track .carousel-item {
        padding: 25px;
        margin: 15px 62px !important; 
        margin: 15px 62px !important; 
        text-align: center;
    }
}

@media (max-width: 360px) {
    .carousel-track .carousel-item {
        padding: 25px;
        margin: 15px 32px !important; 
        text-align: center;
    }
}
*/

/*--------------------------------------------------------------
# Target Audience Section
--------------------------------------------------------------*/
.target-audience {
    padding: 60px 0 100px 0;
    background-color: #f9f4ee;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center !important;
    margin: auto;
}

.section-title-target h2 {
    font-size: var(--title-font-size);
    font-weight: var(--title-font-weight);
    color: #184187;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    text-align: center !important;
}

.section-title-target h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: #184187;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
/* =========================================
   1. O CONTAINER PRINCIPAL
   ========================================= */
.testimonials-section {
    position: relative;
    z-index: 0;
    /* overflow: hidden; (Descomente se a imagem vazar as bordas da section) */
}

/* O pseudoelemento que agora carrega a imagem de fundo */
.testimonials-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;

    /* Suas propriedades originais de background */
    background-image: url("/imgs/banner-depoimento.webp");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

/* Garante que todo o conteúdo (títulos, depoimentos) fique à frente da imagem */
.testimonials-section > * {
    position: relative;
    z-index: 1;
}

/* =========================================
   2. CORREÇÃO DE ACESSIBILIDADE (RAIO-X)
   ========================================= */
body.acessibilidade-contraste .testimonials-section::before {
    /* Desfaz a inversão apenas na imagem de fundo */
    filter: invert(1) hue-rotate(180deg);
}

/* =========================================
   3. SEU CÓDIGO ORIGINAL (MANTIDO)
   ========================================= */
.section-title-testimonials {
    text-align: left !important;
    padding-bottom: 60px;
    position: relative;
    color: white;
}

.section-title-testimonials h2 {
    font-size: var(--title-font-size);
    font-weight: var(--title-font-weight);
    color: white;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    text-align: center;
}

.section-title-testimonials h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: #ffffff;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.section-title-testimonials p {
    margin-bottom: 0;
    text-align: center !important;
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 auto 15px auto;
    font-size: 0.8rem;
    line-height: 1.4;
}

.pt {
    padding-top: 10px !important;
}

.pl {
    padding-left: 20px !important;
}

.role {
    font-size: 0.75rem !important;
    line-height: normal !important;
}

.message {
    font-size: 0.875rem !important;
    line-height: 1.5 !important;
    padding-top: 15px;
}
/*.testimonials-section {
    background-image: url("/imgs/banner-depoimento.webp");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.section-title-testimonials {
    text-align: left !important;
    padding-bottom: 60px;
    position: relative;
    color: white;
}

.section-title-testimonials h2 {
    font-size: var(--title-font-size);
    font-weight: var(--title-font-weight);
    color: white;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    text-align: center;
}

.section-title-testimonials h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: #ffffff;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.section-title-testimonials p {
    margin-bottom: 0;
    text-align: center !important;
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 auto 15px auto;
    font-size: 0.8rem;
    line-height: 1.4;
}

.pt {
    padding-top: 10px !important;
}

.pl {
    padding-left: 20px !important;
}

.role {
    font-size: 0.75rem !important;
    line-height: normal !important;
}

.message {
    font-size: 0.875rem !important;
    line-height: 1.5 !important;
    padding-top: 15px;
}
*/
/*--------------------------------------------------------------
# Action & Results Section
--------------------------------------------------------------*/
.action-results {
    position: relative;
    padding: 100px 0 60px 0;
    background-color: #f9f4ee;
    background-image: url("/imgs/background.svg");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% auto;
    color: #ffffff;
}

.section-title-action-results h2 {
    font-size: var(--title-font-size);
    font-weight: var(--title-font-weight);
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    text-align: center;
}

.section-title-action-results p {
    margin-bottom: 0;
    padding-bottom: 20px;
    text-align: center !important;
    color: #ffffff;
}

.section-title-action h2 {
    font-size: var(--title-font-size);
    font-weight: var(--title-font-weight);
    color: #184187;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    text-align: center;
}

.section-title-action h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: #184187;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

/* Actions Results */
.actions-results-container-gap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 20px;
}

.actions-results-item {
    width: calc(100% / 3 - 0.5rem);
    max-width: 100%;
}

.actions-results-icon {
    padding: 0.15rem;
    border-radius: 0.25rem;
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .action-results {
        background-color: #1d314a;
        background-image: url("/imgs/background.svg");
        background-size: 100% auto;
        background-position: top center;
        background-repeat: no-repeat;
        padding: 80px 0px 40px 0px;
    }

    .action-results::after {
        content: "";
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 50%;
        background-color: #1c2e4a;
        z-index: 0;
    }

    .action-results > * {
        position: relative;
        z-index: 1;
    }

    .actions-results-item {
        width: 100%;
        text-align: center !important;
    }

    .actions-results-icon {
        padding: 0.15rem;
        border-radius: 0.25rem;
        max-width: 80%;
        height: auto;
    }

    .ods-item {
        width: 100%;
        text-align: center !important;
        margin-bottom: 10px;
    }

    .ods-icon {
        width: 100%;
        height: auto;
        object-fit: contain; /* Mantém as proporções sem distorcer */
        display: block;
        transition:
            transform 0.3s ease,
            filter 0.3s ease; /* Transição suave do efeito */
    }

    /* Efeito de zoom leve ao passar o mouse */
    .ods-item:hover .ods-icon {
    transform: scale(1.08); /* Aumenta a imagem em 8% */
    filter: brightness(1.05); /* Leve brilho no destaque */
    }

    /* Previne que o zoom vaze para fora dos limites do item */
    .ods-item {
    overflow: hidden;
    border-radius: 8px; /* Opcional: cantos levemente arredondados */
    flex: 0 0 calc(50% - 5px);
    max-width: calc(50% - 5px);
    }
}

/*--------------------------------------------------------------
# Sustainable Development Goals Section
--------------------------------------------------------------*/
.sustainable-development-goals {
    padding: 60px 0;
    background-color: #f9f4ee;
}

.section-title-sustainable h2 {
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.section-title-sustainable h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: #512080;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.goal-title {
    font-size: var(--title-font-size);
    font-weight: var(--title-font-weight);
    color: #512080;
    margin-bottom: 10px;
    text-align: center;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
}

.goal-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    font-style: normal;
    color: #000000;
    margin-bottom: 30px;
    text-align: center;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
}

@media (max-width: 768px) {
    h2.goal-title {
        font-size: 2rem !important;
    }
    p.goal-subtitle {
        font-size: 1rem !important;
        line-height: 1.6 !important;
    }
}

@media (max-width: 620px) {
    h2.goal-title {
        font-size: 1.8rem !important;
    }
    p.goal-subtitle {
        font-size: 0.875rem !important;
        line-height: 1.4 !important;
    }
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats {
    /* background-color: #2579d4; */
    background-color: #1c2e4a;
    text-align: left;
    margin: 0;
}

.stats .stats-item {
    padding: 0 100px;
    width: 100%;
    gap: 12px; /* para o espaçamento entre os itens */
}

.stats .stats-item span {
    font-size: 3rem;
    display: block;
    color: #ffffff;
    font-weight: 700;
}

.stats .stats-item p {
    color: #e3f0ff;
    padding: 0 !important;
    margin: 0 !important;
    font-size: 0.75rem;
    font-weight: 400;
}

.stats-icon {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 0 !important;
}

.stats .stats-item .stats-icon-wrapper {
    height: 65px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.stats .stats-item .stats-icon-wrapper img {
    max-height: 100%;
    max-width: 60px;
    object-fit: contain;
}

.stats .stats-item .stats-value {
    font-size: clamp(1.8rem, 2.5vw, 2.5rem);
    display: block;
    color: #ffffff;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.stats .stats-item .stats-label {
    margin: 0;
    font-size: 0.6rem;
    color: #ffffff;
    line-height: 1.3;
}

/* Utilizando gap e calc pelo codigo mais limpo e indenpedencia do framework */
.ods-container-gap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 20px;
}

.ods-item {
    width: calc(100% / 6 - 0.5rem);
    max-width: 100%;
}

.ods-icon {
    padding: 0.15rem;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    max-width: 100%;
    height: auto;
        transition:
            transform 0.3s ease,
            filter 0.3s ease; /* Transição suave do efeito */
    }

    /* Efeito de zoom leve ao passar o mouse */
    .ods-item:hover .ods-icon {
    transform: scale(1.08); /* Aumenta a imagem em 8% */
    filter: brightness(1.05); /* Leve brilho no destaque */
    }

    /* Previne que o zoom vaze para fora dos limites do item */
    .ods-item {
    overflow: hidden;
    /*border-radius: 8px;  Opcional: cantos levemente arredondados */
    flex: 0 0 calc(50% - 5px);
    max-width: calc(50% - 5px);
    }

@media (max-width: 768px) {
    .header .logo img {
        max-height: 45px;
        margin-right: 8px;
    }

    .ods-container {
        gap: 0;
    }

    .ods-item {
        width: 100%;
        margin-bottom: 10px;
    }
}

/* Container dos itens */
.ods-container-gap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px; /* Espaçamento entre os itens */
}

/* Item individual */
.ods-item {
    /* Mobile: 2 por linha com gap descontado */
    flex: 0 0 calc(50% - 5px);
    max-width: calc(50% - 5px);
}

/* Desktop (telas acima de 992px) */
@media (min-width: 992px) {
    .ods-item {
        /* Desktop: 6 por linha com gap descontado */
        flex: 0 0 calc(16.666% - 13.33px);
        max-width: calc(16.666% - 13.33px);
    }
}

@media (max-width: 992px) {
    .stats {
        text-align: center;
    }

    .purecounter,
    .stats-label {
        margin-left: auto;
    }
}

@media (max-width: 767px) {
    .stats {
        text-align: center;
    }

    .purecounter,
    .stats-label {
        margin-left: auto;
    }
}

@media (max-width: 420px) {
    .stats {
        text-align: center;
    }

    .purecounter,
    .stats-label {
        margin-left: auto;
    }
}

.contact {
    padding: 60px 0;
    background-color: #463998;
}

.contact .php-email-form button[type="submit"] {
    color: var(--contrast-color);
    background: #184187;
    border: 0;
    padding: 10px 30px;
    transition: 0.4s;
    border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
    background: #2665d2;
}

.contact-title {
    font-size: 1rem;
    font-weight: 700;
    color: black;
    padding-bottom: 0;
    margin-bottom: 0;
}

.contact-us {
    width: 100%;
    margin: 0 auto;
    border-radius: 10px;
    padding: 20px;
}

.footer {
    color: var(--default-color);
    background-color: #463998;
    font-size: 0.875rem;
    padding-bottom: 50px;
    position: relative;
}

.footer .footer-about .logo img {
    max-height: 80px;
    margin-right: 6px;
}

.footer .copyright {
    padding-top: 5px;
    padding-bottom: 5px;
    border-top: 1px solid #4d3fa7;
    color: #ffffff;
}

.footer a {
    color: #aed5ff;
    text-decoration: none;
    transition: 0.3s;
}

.footer a:hover {
    color: #89bdf4;
    transition: 0.3s;
}

.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: -15px;
    z-index: 99999;
    background-color: #9d277c;
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
}

.scroll-top:hover {
    background-color: #e73bb6;
    color: var(--contrast-color);
}

/*--------------------------------------------------------------
# project Posts Section
--------------------------------------------------------------*/
.project-posts {
    background-color: var(--fundo-princial);
}
section .section {
    padding: -60px 0 !important;
}

.project-posts article {
    transition: 0.3s;
}

.project-posts .post-img img {
    transition: 0.5s;
}

.project-posts .post-date {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    position: absolute;
    right: 0;
    bottom: 0;
    text-transform: uppercase;
    font-size: 0.8125rem;
    padding: 6px 12px;
    font-weight: 500;
}

.project-posts .post-content {
    padding: 10px 0px;
}

.project-posts .post-title {
    font-size: 1.25rem;
    color: var(--heading-color);
    font-weight: 700;
    transition: 0.3s;
}

.project-posts .meta i {
    font-size: 1rem;
    color: var(--accent-color);
}

.meta-info:first-letter {
    text-transform: capitalize;
}

.project-posts .meta span {
    font-size: 0.9375rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.project-posts p {
    font-size: 1rem;
}

.project-subtitle {
    font-size: 1rem;
    color: #333333;
    margin-top: -10px !important;
}

.project-posts hr {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
    margin-bottom: 15px;
}

.project-posts .readmore {
    display: flex;
    align-items: center;
    font-weight: 600;
    line-height: 1;
    transition: 0.3s;
    color: #01adff;
    flex-direction: row-reverse;
}

.project-posts .readmore i {
    line-height: 0;
    margin-left: 6px;
    font-size: 1rem;
}

.project-posts article:hover .post-title,
.project-posts article:hover .readmore {
    color: #03425f;
}

.project-posts article:hover .post-img img {
    transform: scale(1.1);
}

/* Projects Details */
/* ---------------------------------- */
/* COLUNA ESQUERDA (Conteúdo Principal) */
/* ---------------------------------- */
.content-box-left {
    background-color: var(--bg-left);
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    padding-left: 0rem !important;
    padding-right: 2rem !important;
    padding-bottom: 2rem !important;
}

.bullet-list-custom li {
    line-height: 1.5;
}

/* ---------------------------------- */
/* COLUNA DIREITA (Cards) */
/* ---------------------------------- */

/* Estilo Base dos Cards (Resultados e Iniciativas) */
.results-card,
.initiatives-card,
.partner-box {
    background-color: rgba(255, 255, 255, 1);
    border-radius: 8px;
    box-shadow: var(--shadow-main) !important;
}

.result-item {
    border-bottom: 1px solid #333333;
}

/* Garante que o último item não tenha borda inferior */
.results-card .d-flex:last-of-type {
    border-bottom: none;
    margin-bottom: 0 !important;
}

.icon-blue {
    font-size: 2rem;
    font-weight: 900;
    color: var(--blue-main);
}

.icon-circle {
    background-color: rgba(228, 241, 246, 1);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
}

.results-card h4 {
    font-size: 1.4rem;
}

.text-blue {
    color: var(--blue-main) !important;
}

.statistical-topics p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
}

.partner-topics img {
    max-height: 40px;
}

/* Lista de Iniciativas */
.links-list a {
    border-bottom: 1.5px solid #33333330;
    padding: 0.75rem 0.5rem;
}

.links-list li:last-child a {
    border-bottom: none;
    padding: 0;
}

.link-list-divider {
    border-top: 1px solid #eee;
    margin-top: 0;
    margin-bottom: 0;
}

.light-blue {
    color: rgba(0, 130, 188, 1) !important;
}

/*--------------------------------------------------------------
# project Pagination Section
--------------------------------------------------------------*/
.project-pagination {
    padding-top: 0;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.project-pagination ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
}

.project-pagination li {
    margin: 0 5px;
    transition: 0.3s;
}

.project-pagination li a {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    padding: 7px 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-pagination li a.active,
.project-pagination li a:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.project-pagination li a.active a,
.project-pagination li a:hover a {
    color: var(--contrast-color);
}

/*--------------------------------------------------------------
# project Details Section
--------------------------------------------------------------*/
.project-details {
    padding-bottom: 30px;
}

.project-details .article {
    background-color: var(--surface-color);
    padding: 30px;
    box-shadow: 0 4px 1rem rgba(0, 0, 0, 0.1);
}

.project-details .post-img {
    margin: -30px -30px 20px -30px;
    overflow: hidden;
}

.project-details .title {
    color: var(--heading-color);
    font-size: 1.75rem;
    font-weight: 700;
    padding: 0;
    margin: 30px 0;
}

.project-details .content {
    margin-top: 20px;
}

.project-details .content h3 {
    font-size: 1.375rem;
    margin-top: 30px;
    font-weight: bold;
}

.project-details .content blockquote {
    overflow: hidden;
    background-color: color-mix(in srgb, var(--default-color), transparent 95%);
    padding: 60px;
    position: relative;
    text-align: center;
    margin: 20px 0;
}

.project-details .content blockquote p {
    color: var(--default-color);
    line-height: 1.6;
    margin-bottom: 0;
    font-style: italic;
    font-weight: 500;
    font-size: 1.375rem;
}

.project-details .content blockquote:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--accent-color);
    margin-top: 20px;
    margin-bottom: 20px;
}

.project-details .meta-top {
    margin-top: 20px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.project-details .meta-top ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
    padding: 0;
    margin: 0;
}

.project-details .meta-top ul li + li {
    padding-left: 20px;
}

.project-details .meta-top i {
    font-size: 1rem;
    margin-right: 8px;
    line-height: 0;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.project-details .meta-top a {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 0.875rem;
    display: inline-block;
    line-height: 1;
}

.project-details .meta-bottom {
    padding-top: 10px;
    border-top: 1px solid
        color-mix(in srgb, var(--default-color), transparent 90%);
}

.project-details .meta-bottom i {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    display: inline;
}

.project-details .meta-bottom a {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    transition: 0.3s;
}

.project-details .meta-bottom a:hover {
    color: var(--accent-color);
}

.project-details .meta-bottom .cats {
    list-style: none;
    display: inline;
    padding: 0 20px 0 0;
    font-size: 0.875rem;
}

.project-details .meta-bottom .cats li {
    display: inline-block;
}

.project-details .meta-bottom .tags {
    list-style: none;
    display: inline;
    padding: 0;
    font-size: 0.875rem;
}

.project-details .meta-bottom .tags li {
    display: inline-block;
}

.project-details .meta-bottom .tags li + li::before {
    padding-right: 6px;
    color: var(--default-color);
    content: ",";
}

.project-details .meta-bottom .share {
    font-size: 1rem;
}

.project-details .meta-bottom .share i {
    padding-left: 5px;
}

@media (max-width: 768px) {
    .project-posts {
        padding: 25px 15px;
    }
}

@media (max-width: 992px) {
    .project-posts {
        padding: 25px 15px;
    }
}

/*--------------------------------------------------------------
# Transparency Section
--------------------------------------------------------------*/
.transparency {
    background-color: #f9f4ee;
    margin-top: 0px;
}

.transparency h2 {
    color: rgba(37, 121, 212, 1) !important;
}

.transparency .section-title h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: rgba(37, 121, 212, 1);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.transparency .service-item {
    background-color: rgba(231, 231, 231, 1);
    padding: 20px 30px;
    border-radius: 10px;
    border-left: 30px solid rgba(60, 119, 229, 1);
    transition: all ease-in-out 0.4s;
    height: 100%;
}

.transparency .service-item .icon {
    text-align: center;
    margin-bottom: 10px;
}

.transparency .service-item .icon svg {
    fill: rgba(60, 119, 229, 1);
    font-size: 2.25rem;
    transition: 0.3s;
}

.transparency .service-item:hover .icon svg {
    fill: #ffffff !important;
}

.transparency .service-item h4 {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.transparency .service-item h4 a {
    color: rgba(37, 121, 212, 1);
    transition: ease-in-out 0.3s;
}

.transparency .service-item:hover h4 a {
    color: #ffffff !important;
    transition: ease-in-out 0.3s;
}

.transparency .service-item p {
    line-height: 18px;
    font-size: 0.875rem;
    margin-bottom: 0;
}

.transparency .service-item:hover {
    transform: translateY(-10px);
    background-color: rgba(37, 121, 212, 1);
    color: #ffffff !important;
    border-left: 30px solid rgba(231, 231, 231, 1);
    box-shadow:
        rgba(17, 17, 26, 0.1) 0px 1px 0px,
        rgba(17, 17, 26, 0.1) 0px 8px 24px,
        rgba(17, 17, 26, 0.1) 0px 1rem 48px;
}

.transparency .service-item:hover h4 a {
    color: rgb(155, 193, 234);
}

@media (max-width: 768px) {
    .transparency p {
        line-height: 24px;
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    .transparency .service-item {
        flex: 0 auto !important;
        padding: 20px;
        margin: 0 20px !important;
    }
}

@media (min-width: 768px) {
    .col-md-4-serv {
        flex: 0 auto !important;
        width: 50%;
        margin: 10px;
    }

    .transparency .service-item h4 {
        font-weight: 700;
        margin-bottom: 10px;
        font-size: 1rem;
    }

    .transparency .service-item p {
        line-height: 18px;
        font-size: 0.775rem;
        margin-bottom: 0;
    }
}

@media (min-width: 1200px) {
    .col-xl-3 {
        flex: 0 auto !important;
        width: 25%;
    }
}

/* Secaoo Principal das Noticias */
section .posts-section .section {
    padding: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.container-posts {
    max-width: 1200px;
    margin: 0px auto 0 auto !important;
    padding: 0px 40px;
}

/* Noticia Destaque */
.highlight-section {
    margin-top: 0 !important;
}

.section-title-highlight {
    font-size: var(--title-font-size);
    font-weight: var(--title-font-weight);
    color: #184187;
    margin-bottom: 0 !important;
    padding-bottom: 20px !important;
    position: relative;
}

.main-highlight {
    position: relative;
    height: 450px;
    margin-top: 0 !important;
    padding: 60px 0 0 0 !important;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.main-highlight img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.highlight-content {
    position: relative;
    z-index: 3;
    padding: 30px;
    color: #fff;
}

.highlight-content h2 {
    margin-bottom: 10px;
    color: #ffffff;
    font-family: var(--font-family);
    font-weight: 600;
    font-style: SemiBold;
    font-size: 3.125rem;
    line-height: 60px;
    letter-spacing: 0%;
}

.meta-info-highlight {
    font-size: 0.9rem;
    color: #ffffff;
    padding-top: 10px;
}

.meta-info-highlight:first-letter {
    text-transform: capitalize;
}

@media (max-width: 768px) {
    .container-posts {
        margin: 20px auto 0 auto;
        padding: 20px 20px;
    }

    .main-highlight {
        height: 300px;
    }

    .highlight-content h2 {
        font-size: 1.8rem;
    }

    .highlight-content h2 {
        margin-top: 10px;
        color: #ffffff;
        font-family: var(--font-family);
        font-size: 1.25rem !important;
        font-weight: 600;
        font-style: SemiBold;
        line-height: 30px;
        letter-spacing: 0%;
    }

    .section-title-highlight {
        font-size: var(--mobile-title-font-size);
        font-weight: var(--mobile-title-font-weight);
        color: #184187;
        margin-bottom: 0 !important;
        padding-bottom: 10px !important;
        position: relative;
    }
}

@media (min-width: 768px) {
}

.latest-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* grid-template-columns: 2fr 1fr; */
    gap: 30px;
    margin-top: 0 !important;
    padding: 0 !important;
}

.card-latest-post {
    background-color: var(--fundo-principal);
    border-radius: 10px;
    overflow: hidden;
}

.card-latest-post img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.card-latest-content {
    padding: 0px !important;
}

.card-latest-content h3 {
    font-size: 1.5rem;
    line-height: 1.2;
    margin-top: 20px;
}

.card-latest-content p {
    font-size: 1rem;
    color: var(--cor-secundaria);
}

.title-bar {
    padding: 15px 20px;
    margin-bottom: 20px;
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    border-top-right-radius: 20px;
}

.black-bar {
    background-color: var(--cinza-escuro);
}

.blue-bar {
    background-color: var(--cor-principal);
}

.latest-posts-section {
    background-color: var(--fundo-principal);
    border-radius: 10px;
}

.latest-posts-section .card-latest-post {
    box-shadow: none;
    border-radius: 0;
}

.latest-posts-section .card-latest-content {
    padding: 0 20px 20px;
}

.latest-posts-section img {
    border-radius: 8px;
}

@media (max-width: 768px) {
    .latest-section {
        grid-template-columns: 1fr;
    }

    .card-latest-content p {
        padding-right: 30px;
    }
}

@media (max-width: 620px) {
    .card-latest-content p {
        padding-right: 30px;
    }
}

@media (max-width: 360px) {
    .title-bar {
        padding: 15px 20px;
        margin-bottom: 20px;
    }

    .card-latest-content p,
    .card-latest-content h3 {
        padding-right: 0px;
    }
}

.details-section {
    margin-top: 0 !important;
    padding: 25px 0 !important;
}

.section-title-details {
    font-size: var(--title-font-size);
    font-weight: var(--title-font-weight);
    color: #000000;
    margin-bottom: 0 !important;
    padding-bottom: 20px !important;
    position: relative;
}

.posts-filter {
    margin-bottom: -50px;
    padding: 25px 0 !important;
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
}

.main-details {
    position: relative;
    height: 450px;
    margin: 0 !important;
    padding: 60px 0 0 0 !important;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.main-details img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.details-content {
    position: relative;
    z-index: 3;
    padding: 30px;
    color: #fff;
}

.details-content h2 {
    margin-bottom: 10px;
    color: #ffffff;
    font-family: var(--font-family);
    font-weight: 600;
    font-style: SemiBold;
    font-size: 3.125rem;
    line-height: 60px;
    letter-spacing: 0%;
}

.meta-info-details {
    font-size: 0.9rem;
    color: #ffffff;
    padding-top: 10px;
}

.post-title-details {
    font-size: 2.5rem;
    line-height: 1.3;
    font-weight: 600;
}

.post-details-image img {
    width: 100%;
    height: auto;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

/* PONTOS DE VISTA COM SCROLL */
.points-view-section {
    background-color: var(--fundo-principal);
    border-radius: 10px;
}

.points-view-section .list-points {
    max-height: 550px;
    overflow-y: auto;
    padding: 0 20px 20px 0;
}

.card-points {
    background-color: var(--fundo-principal);
    border-radius: 10px;
    overflow: hidden;
}

.points-view-section .card-points {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    box-shadow: none;
    border-bottom: 1px solid #eee;
    border-radius: 0;
    padding: 0;
}

.points-view-section .card-points img {
    width: 160px;
    height: 128px;
    object-fit: cover;
    border-radius: 5px;
}

.points-view-section .card-points-content {
    padding: 0;
}

.points-view-section .card-points-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 0;
    color: #000000 !important;
}
.points-view-section .card-points-content p {
    font-size: 0.9rem;
    color: #999999 !important;
    hyphens: auto !important;
}

@media (max-width: 360px) {
    .points-img-mobile {
        width: 40%;
        height: fit-content;
        object-fit: none;
        border-radius: 5px;
    }

    .points-description-mobile {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .points-view-section .card-points img {
        width: 40%;
        object-fit: cover;
        border-radius: 5px;
    }
}

/* CATEGORIAS */
section .categories {
    padding: 0 !important;
    margin-top: 20px !important;
}

.categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.category-tag {
    background-color: #ddd;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    color: #555;
    font-weight: 500;
}

.category-tag:nth-child(1) {
    background-color: #5cb85c;
    color: white;
}
.category-tag:nth-child(2) {
    background-color: #f0ad4e;
    color: white;
}
.category-tag:nth-child(3) {
    background-color: #d9534f;
    color: white;
}
.category-tag:nth-child(4) {
    background-color: #5bc0de;
    color: white;
}
.category-tag:nth-child(5) {
    background-color: #0275d8;
    color: white;
}
.category-tag:nth-child(6) {
    background-color: #6a1a79;
    color: white;
}
.category-tag:nth-child(7) {
    background-color: #6c10ce;
    color: white;
}
.category-tag:nth-child(8) {
    background-color: #b9b605;
    color: white;
}
.category-tag:nth-child(9) {
    background-color: #ce1095;
    color: white;
}
.category-tag:nth-child(10) {
    background-color: #320224;
    color: white;
}
.category-tag:nth-child(11) {
    background-color: #895129;
    color: white;
}
.category-tag:nth-child(12) {
    background-color: #4d49fc;
    color: white;
}

/* GALERIA DE NOTICIAS/POSTS */
.posts-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 0px !important;
    background-color: var(--fundo-transparente);
}

.card-post {
    background-color: var(--fundo-principal);
    border-radius: 10px;
    overflow: hidden;
}

.posts-gallery .card-post {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.posts-gallery .card-post img {
    width: 100%;
    object-fit: cover;
    height: 200px;
    flex-shrink: 0; /* Impede que a imagem encolha */
}

.posts-gallery .card-content-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    padding-top: 20px;
}

.posts-gallery .card-content-text h3 {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.3;
    margin-top: 0;
    margin-bottom: 0;
}

.meta-info {
    font-family: Roboto;
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(148, 148, 148, 1) !important;
}

.posts-gallery .card-content-text {
    flex-grow: 1;
}

.posts-gallery .card-content-text p {
    margin-top: 10px;
}

@media (max-width: 768px) {
    .posts-gallery {
        grid-template-columns: 1fr; /* Apenas 1 coluna em telas pequenas */
    }

    .post-title-details {
        font-size: 2rem;
        line-height: 1.3;
        font-weight: 600;
    }

    .post-details-image {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        object-fit: cover;
        flex-shrink: 0;
    }
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination a {
    text-decoration: none;
}

.pagination-item {
    width: 35px;
    height: 35px;
    aspect-ratio: 1 / 1;
    background-color: #ddd;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    color: var(--cinza-escuro);
}

.pagination-item.ativo {
    background-color: var(--cor-principal);
    color: white;
}

.pagination-item:hover {
    background-color: var(--item-hover);
}

/*--------------------------------------------------------------
# partners Section
--------------------------------------------------------------*/
section .partners .section {
    margin-top: 0 !important;
    background-color: #f9f4ee !important;
}

.partners h2 {
    color: rgba(241, 174, 29, 1) !important;
}

.partners .section-title h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: rgba(241, 174, 29, 1) !important;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.partners .logo-item {
    padding: 0.5rem;
    text-align: center;
    height: 100%;
    background-color: var(--surface-color);
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partners .logo-item img {
    max-width: 90%;
    transition: all 0.3s ease-in-out;
    opacity: 0.8;
}

.partners .logo-item:hover {
    border-color: var(--accent-color);
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.partners .logo-item:hover img {
    filter: grayscale(0);
    opacity: 1;
}

@media (max-width: 1199px) {
    .partners .logo-item {
        padding: 1.25rem;
    }
}

@media (max-width: 767px) {
    .partners .logo-item {
        padding: 1rem;
    }
}
@media (max-width: 575px) {
    .partners .logo-item {
        padding: 0.75rem;
    }
}
@media (max-width: 400px) {
    .partners .logo-item {
        padding: 0.5rem;
    }
}

/*--------------------------------------------------------------
# Donations Section
--------------------------------------------------------------*/
.donations.section {
    margin: 60px 0 0 0 !important;
    background-color: #f9f4ee;
}

.donations .card-transfer {
    background-color: rgba(255, 255, 255, 1);
    border: 1px rgba(217, 217, 217, 1);
    box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 3px 0px;
    margin-top: 30px;
    padding: 10px 20px;
    max-width: 400px;
    max-height: 270px;
    border-radius: 25px;
}

.card-transfer-left {
    margin-left: 70px;
}

.card .tinymce-data p strong {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 45px;
    font-weight: 700;
    line-height: 1.2;
    color: #1c3fbf;
}

p.card-subtitle-donation,
.tinymce-data p {
    width: 93%;
    font-size: 18px;
    font-weight: 400;
    color: #000000;
}

.card-title-transfer {
    font-size: 32px;
    font-weight: 700;
    color: rgba(226, 28, 70, 1);
    padding-bottom: 10px;
}

.bank-transfer {
    line-height: 1.2;
    padding: 0 5px;
}

p code {
    color: #000000;
}

div.pix-key-box {
    background-color: rgba(217, 217, 217, 1);
    border: 1px solid #cccccc;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 15px;
}

.copy-button {
    background-color: rgba(82, 39, 204, 1);
    color: #ffffff;
    border: none;
    padding: 10px 15px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8em;
    font-weight: 400;
    width: 118px;
    height: 40px;
    transition: all 0.3s ease;
}

.copy-button:hover {
    background-color: rgb(105, 52, 249);
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.bg-red {
    background-color: rgba(226, 28, 70, 1);
    color: #ffffff;
    border: none;
    padding: 10px 15px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8em;
    font-weight: 400;
    width: 118px;
    height: 40px;
    transition: all 0.3s ease;
}

@media (max-width: 650px) {
    .donations .card-transfer {
        margin: 20px 0;
        padding: 5px;
        width: 100%;
        min-height: auto !important;
    }

    .tinymce-data p strong {
        font-size: 35px !important;
    }
}

/*--------------------------------------------------------------
# Correção de Espaçamento para Telas Grandes (2560x1080 e maiores)
--------------------------------------------------------------*/
@media (min-width: 1921px) {
    .hero .carousel {
        margin-top: var(--navbar-height-large-screen);
        min-height: 90vh;
    }
}

/* Hearder Hero Personalizado */
.page-header-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.page-header-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.no-select {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

@media (min-width: 768px) {
    .mobile {
        display: none !important;
    }

    .desktop {
        display: block !important;
    }
}

@media (max-width: 600px) {
    .mobile {
        display: block !important;
    }

    .post-title-details {
        padding-top: 0px;
    }

    .desktop {
        display: none !important;
    }
}

.privacy-policy {
    padding-right: 70px;
}

.privacy-policy ol li {
    margin: 0 100px 0 30px;
    padding-bottom: 10px;
    list-style-type: upper-alpha;
    font-size: 0.85rem;
}

.document-guide-fixed {
    position: fixed;
    right: 10px;
    height: 400px !important;
    overflow-y: auto;
    background: #f6f9ff;
    width: auto !important;
}

.document-guide-fixed ul {
    list-style: none;
    padding-left: 0 !important;
}

.document-guide-fixed ul .sublist {
    list-style-type: square;
    margin-left: 35px !important;
    font-size: 80%;
}

@media (max-width: 678px) {
    .document-guide-fixed {
        position: relative;
        margin-bottom: 50px;
        margin-left: 30px;
    }

    .privacy-policy {
        padding: 0 10px;
    }

    .privacy-policy ol li {
        margin: 0;
        padding-bottom: 10px;
        list-style-type: upper-alpha;
        font-size: 0.85rem;
    }
}

@keyframes slideIn {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(25px);
    }
}

@keyframes slideOut {
    0% {
        transform: translateX(25px);
    }

    100% {
        transform: translateX(-100%);
    }
}

.pop-up {
    transform: translateX(-100%);
    animation: slideIn 1s forwards;
    animation-delay: 0.5s;
    position: fixed;
    left: 0;
    bottom: 25px;
    width: 450px;
    height: auto;
    z-index: 9999;
}

.pop-up.hide {
    animation: slideOut 1s forwards;
    animation-name: slideOut;
    animation-delay: 0s;
}

.pop-up.hidden {
    display: none;
}

.access-trigger {
    position: fixed;
    left: 10px;
    bottom: 0;
    width: auto;
    height: auto;
    z-index: 9998;
    background-color: #007bff;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    cursor: pointer;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0em;
    opacity: 0;
    transform: opacity 0.5s ease;
}

.access-trigger.visible {
    opacity: 1;
}

.pop-up img {
    width: 450px;
    border-radius: 10px;
}

.btn-popup {
    position: absolute;
    top: 1px;
    right: 10px;
}

button.close {
    padding: 0;
    background-color: transparent;
    border: 0;
    font-size: 1.5rem;
    color: #ffffff;
}

button.close:hover {
    color: crimson;
}

@media (max-width: 600px) {
    .pop-up,
    .pop-up img {
        width: 300px;
    }
}

/* =========================================
   1. WIDGET FLUTUANTE LATERAL
   ========================================= */
.widget-acessibilidade {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 99999;
    display: flex;
    align-items: center;
}

.btn-icone-acessibilidade {
    background-color: #003087;
    border: none;
    padding: 12px;
    border-radius: 8px 0 0 8px;
    cursor: pointer;
    box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.painel-acessibilidade {
    position: absolute;
    right: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 8px 0 0 8px;
    box-shadow: -4px 4px 15px rgba(0, 0, 0, 0.1);
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.painel-acessibilidade button {
    background: #f8f9fa;
    border: 1px solid #ccc;
    padding: 8px 16px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
    white-space: nowrap;
}

.painel-acessibilidade button:hover {
    background: #e2e6ea;
}

.widget-acessibilidade.aberto .painel-acessibilidade {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

body.acessibilidade-sublinhar a {
    text-decoration: underline !important;
    text-underline-offset: 3px !important;
}

body.acessibilidade-contraste {
    background-color: #111;
}

body.acessibilidade-contraste > header {
    position: relative !important;
    z-index: 999999 !important;
}

/* 1. Força o fundo escuro no Header inteiro usando o ID (maior prioridade) */
body.acessibilidade-contraste #header {
    background-color: #111 !important;
}

/* 2. Aplica o truque mágico para deixar a logo (imagem) 100% branca */
body.acessibilidade-contraste #header .logo img {
    filter: brightness(0) invert(1) !important;
}

/* 3. Garante que todos os links do menu fiquem brancos */
body.acessibilidade-contraste #header .navmenu a.nav-link {
    color: #ffffff !important;
}

/* 4. (Bônus) Garante que o ícone do menu mobile (o hambúrguer) também fique branco */
body.acessibilidade-contraste #header .mobile-nav-toggle {
    color: #ffffff !important;
}

body.acessibilidade-contraste > main,
body.acessibilidade-contraste > footer {
    position: relative !important;
    z-index: 1 !important;
}

/*body.acessibilidade-contraste > header,*/
body.acessibilidade-contraste > main,
body.acessibilidade-contraste > footer {
    filter: invert(1) hue-rotate(180deg);
}

body.acessibilidade-contraste img,
body.acessibilidade-contraste video,
body.acessibilidade-contraste picture {
    filter: invert(1) hue-rotate(180deg);
}

body.acessibilidade-contraste header,
body.acessibilidade-contraste .nome-da-classe-da-barra {
    background-color: #111 !important;
}

body.acessibilidade-contraste header nav ul {
    /*background-color: transparent !important;*/
    background-color: #111 !important;
}

body.acessibilidade-contraste header nav ul li a {
    color: #fff !important;
}

.painel-acessibilidade .btn-reset {
    background: #ffebe9;
    color: #cb2431;
    border-color: #f1c0c0;
    font-weight: bold;
}

.painel-acessibilidade .btn-reset:hover {
    background: #f1c0c0;
}

html.acessibilidade-fonte-1 {
    font-size: 110% !important;
}
html.acessibilidade-fonte-2 {
    font-size: 120% !important;
}
html.acessibilidade-fonte-3 {
    font-size: 130% !important;
}

/* Opcional: Estilo para os botões de fonte parecerem um grupo */
#btn-aumentar-fonte,
#btn-diminuir-fonte {
    font-weight: bold;
    font-size: 16px;
    padding: 4px;
}

.custom-tooltip {
    --bs-tooltip-bg: var(--bd-violet-bg);
    --bs-tooltip-color: var(--bs-white);
}
