/* ==========================================================================
   STYLE-HOME.CSS - Estilos exclusivos para a Home
   ========================================================================== */

body.home {
    background-color: #f1edde;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    width: 100%;
    height: 698px;
    overflow: hidden;
    background-color: #000;
}

@media (min-width: 992px) {
    .hero-section {
        height: 718px;
    }
}

.hero-section .hero-swiper {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-section .hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-section .hero-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-section .hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-section .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180.04deg,
        rgba(0, 0, 0, 0) 46.85%,
        #000000 99.96%
    );
    z-index: 2;
    pointer-events: none;
}

.hero-section .hero-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    padding-bottom: 60px;
}

.hero-section .hero-container.hero-container-animated {
    animation: heroFadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.swiper-slide-duplicate .hero-container-animated {
    animation: none !important;
}

@keyframes heroFadeInUp {
    from {
        opacity: 0;
        transform: translateY(80px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-section .hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.hero-section .hero-left {
    width: 100%;
    max-width: 100%;
}

.hero-section .hero-title {
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
    font-size: 26px;
    line-height: 113.5%;
    color: #ffffff;
    margin: 0;
    text-transform: none;
}

.hero-section .hero-right {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.hero-section .hero-description {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
    color: #ffffff;
    margin: 0;
}

.hero-section .btn-hero-watch {
    width: 151px;
    height: 44px;
    background: #399247;
    border-radius: 51px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #ffffff !important;
    text-decoration: none !important;
    transition: all 0.2s ease-in-out;
}

.hero-section .btn-hero-watch img {
    width: 17px;
    height: 17px;
    display: block;
    object-fit: contain;
}

.hero-section .btn-hero-watch:hover,
.hero-section .btn-hero-watch:active,
.hero-section .btn-hero-watch:focus {
    width: 153px;
    background: #0a5215;
    color: #ffffff !important;
    text-decoration: none !important;
}

.hero-section .hero-pagination-container {
    position: absolute;
    bottom: 24px;
    left: 0;
    width: 100%;
    z-index: 4;
    pointer-events: none;
}

.hero-section .hero-pagination {
    position: static;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
    width: auto;
    pointer-events: auto;
}

.hero-section .hero-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #ffffff;
    opacity: 1;
    border-radius: 50%;
    margin: 0 !important;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.hero-section .hero-pagination .swiper-pagination-bullet-active {
    background-color: #399247;
}

@media (min-width: 992px) {
    .hero-section .hero-container {
        padding-bottom: 50px;
    }

    .hero-section .hero-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
        gap: 40px;
    }

    .hero-section .hero-left {
        flex: 0 0 54%;
        max-width: 576px;
    }

    .hero-section .hero-title {
        font-size: 40.63px;
        line-height: 113.5%;
        margin-bottom: 30px;
    }

    .hero-section .hero-right {
        flex: 0 0 49%;
        max-width: 589px;
        gap: 50px;
    }

    .hero-section .hero-description {
        font-size: 18px;
    }

    .hero-section .hero-pagination-container {
        bottom: 50px;
    }
}

@media (min-width: 1200px) {
    .hero-section .container {
        width: clamp(1180px, 92vw, 1240px);
        max-width: 1240px;
    }
}

/* ==========================================================================
   HERO VIDEO FANCYBOX MODAL
   ========================================================================== */
.fancybox-hero-video .fancybox-bg {
    background: #000000;
}

.fancybox-is-open.fancybox-hero-video .fancybox-bg {
    opacity: 0.6;
}

.fancybox-hero-video .fancybox-toolbar {
    top: 24px;
    right: 24px;
    opacity: 1 !important;
    visibility: visible !important;
    display: flex;
    gap: 10px;
    z-index: 99999;
}

.fancybox-hero-video .fancybox-button {
    background: rgba(0, 0, 0, 0.25);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    padding: 10px;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.fancybox-hero-video .fancybox-button:hover {
    background: rgba(0, 0, 0, 0.45);
    color: #ffffff;
}

.fancybox-hero-video .fancybox-slide {
    padding: 44px 20px;
}

.fancybox-hero-video .fancybox-slide--video .fancybox-content {
    max-width: 1331px;
    width: 100%;
    aspect-ratio: 1331 / 748.69;
    background: #000000;
    border-radius: 6.93px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.fancybox-hero-video .fancybox-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6.93px;
}

@media (max-width: 991px) {
    .fancybox-hero-video .fancybox-slide {
        padding: 44px 16px !important;
    }

    .fancybox-hero-video .fancybox-slide--video .fancybox-content {
        max-width: calc(100vw - 32px);
        width: 100%;
        border-radius: 1.95px;
    }

    .fancybox-hero-video .fancybox-video {
        border-radius: 1.95px;
    }

    .fancybox-hero-video .fancybox-toolbar {
        top: 12px;
        right: 12px;
    }

    .fancybox-hero-video .fancybox-button {
        width: 38px;
        height: 38px;
        padding: 8px;
    }
}

/* ==========================================================================
   PROGRAMAS & PROJETOS
   ========================================================================== */
.section-programs-projects-home {
    position: relative;
    padding: 60px 0 70px;
    background-color: #f1edde;
    overflow: hidden;
}

.section-programs-projects-home .decorator-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 260.41px;
    height: 267px;
    pointer-events: none;
    z-index: 0;
}

.section-programs-projects-home .decorator-left {
    position: absolute;
    top: 80px;
    left: 0;
    width: 426.96px;
    height: 292.21px;
    pointer-events: none;
    z-index: 0;
}

.programs-projects-header {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 0;
}

.programs-projects-kicker {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2;
    color: #399247;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.programs-projects-title {
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
    font-size: 40.63px;
    line-height: 1.15;
    color: #383521;
    text-align: center;
    max-width: 760px;
    margin: 0 auto 16px;
}

.programs-projects-description {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
    color: #787878;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 36px;
}

/* Tabs Navigation */
.slide-titles-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    margin-bottom: 32px;
}

.section-programs-projects-home .slide-titles-wrapper,
.section-programs-projects-home .programs-projects-swiper-container {
    opacity: 0;
    transform: translateY(80px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-programs-projects-home .slide-titles-wrapper.is-visible,
.section-programs-projects-home .programs-projects-swiper-container.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.section-programs-projects-home .programs-projects-swiper-container {
    transition-delay: 0.15s;
}

.slide-titles {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 0 15px 4px;
    white-space: nowrap;
}

.slide-title-slide {
    width: auto !important;
    display: inline-flex;
    align-items: center;
}

.slide-titles .slide-title {
    background: transparent;
    border: none;
    outline: none;
    padding: 0 0 10px 0;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #726e51;
    opacity: 0.5;
    cursor: pointer;
    transition: opacity 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    border-bottom: 4px solid transparent;
    border-radius: 0;
}

.slide-titles .slide-title:hover {
    opacity: 0.8;
}

.slide-titles .slide-title.active {
    opacity: 1;
    color: #726e51;
    border-bottom: 4px solid #408c46;
    border-radius: 0;
}

/* Swiper Carousel */
.section-programs-projects-home .programs-projects-swiper-container {
    position: relative;
    z-index: 1;
    width: 100%;
    overflow: hidden;
}

.section-programs-projects-home .programs-projects-swiper {
    width: 100%;
    overflow: visible;
}

.section-programs-projects-home .swiper-slide.program-card {
    width: 898px !important;
    max-width: 898px;
    display: flex;
    flex-direction: column;
    background: transparent;
    padding: 0;
    height: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.section-programs-projects-home .swiper-slide.program-card.swiper-slide-active {
    opacity: 1;
}

.program-card-media {
    width: 898px;
    max-width: 100%;
    height: 369px;
    border-radius: 20px;
    overflow: hidden;
    background-color: #eae5d4;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.program-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.program-card-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 18px;
    width: 100%;
}

.program-card-details {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 72%;
    flex: 1;
}

.program-card-icon {
    width: 41px;
    height: 41px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.program-card-icon img {
    width: 41px;
    height: 41px;
    object-fit: contain;
    display: block;
}

.program-card-description {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    color: #787878;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.program-card-action {
    flex-shrink: 0;
}

.btn-program-saiba-mais {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 28px;
    border: 1px solid #c8c4b2;
    border-radius: 30px;
    background: transparent;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #383521 !important;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: background-color 0.2s ease, border-color 0.2s ease,
        color 0.2s ease;
}

.btn-program-saiba-mais:hover {
    background-color: #235a59 !important;
    border-color: #235a59 !important;
    color: #ffffff !important;
}

/* ==========================================================================
   NOTÍCIAS
   ========================================================================== */
.section-news {
    background-color: #408c46;
    border-radius: 50px 50px 0 0;
    position: relative;
    overflow: hidden;
    padding: 50px 0 66px;
    z-index: 2;
    opacity: 0;
    transform: translateY(80px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-news.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.section-news .decorator-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 236px;
    height: 328px;
    pointer-events: none;
    z-index: 0;
}

.section-news .decorator-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 319px;
    height: 328px;
    pointer-events: none;
    z-index: 0;
}

.section-news .container {
    position: relative;
    z-index: 1;
    justify-items: center;
}

.news-header {
    text-align: center;
    margin-bottom: 38px;
}

.news-kicker {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 22px;
    color: #ffffff;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.news-title {
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
    font-size: 40.63px;
    line-height: 1.15;
    color: #ffffff;
    text-align: center;
    margin: 0 auto;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 34px;
    margin-bottom: 40px;
    max-width: 1084px;
}

.news-card {
    background-color: #faf6eb;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none !important;
    color: inherit;
    transition: background-color 0.25s ease, color 0.25s ease;
    height: 100%;
}

.news-card:hover {
    background-color: #235a59;
    text-decoration: none !important;
    color: inherit;
}

.news-card:hover .news-card-title,
.news-card:hover .news-card-description {
    color: #ffffff;
}

.news-card:hover .btn-news-read-inline {
    border-color: #ffffff;
    color: #ffffff;
}

.news-card:hover .btn-news-read-inline .icon-plus {
    filter: brightness(0) invert(1);
}

.news-card-body {
    order: 1;
    flex: 1;
    padding: 16px 16px 22px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.news-card-tag {
    background-color: #399247;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 11px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0;
    padding: 5px 10px;
    border-radius: 2px;
    display: inline-block;
    margin-bottom: 12px;
}

.news-card-title {
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
    font-size: 24px;
    line-height: 1.25;
    color: #383521;
    margin: 0 0 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.25s ease;
}

.news-card-description {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.45;
    color: #787878;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.25s ease;
}

.btn-news-read-inline {
    display: none;
}

.btn-news-read-overlay .icon-plus,
.btn-news-read-inline .icon-plus {
    width: 18px;
    height: 18px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 4px;
    transition: filter 0.25s ease;
}

.news-card-media {
    order: 2;
    position: relative;
    width: 100%;
    height: 249px;
    overflow: hidden;
    background-color: #eae5d4;
}

.news-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.btn-news-read-overlay {
    position: absolute;
    bottom: 14px;
    left: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #383521;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 16px;
    padding: 6px 16px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    text-transform: uppercase;
}

.news-footer {
    text-align: center;
}

.btn-news-ver-tudo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #ffffff;
    background: transparent;
    color: #ffffff !important;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    padding: 9px 22px;
    line-height: 22px;
    border-radius: 30px;
    text-decoration: none !important;
    transition: background-color 0.2s ease, border-color 0.2s ease,
        color 0.2s ease;
}

.btn-news-ver-tudo:hover {
    background-color: #235a59 !important;
    color: #ffffff !important;
    text-decoration: none !important;
}

/* ==========================================================================
   CALCULATOR
   ========================================================================== */
.section-calculator {
    background: linear-gradient(
        180deg,
        #408c46 0%,
        #408c46 50%,
        #f1edde 50%,
        #f1edde 100%
    );
    padding: 0;
    position: relative;
    z-index: 2;
    width: 100%;
    opacity: 0;
    transform: translateY(80px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-calculator.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.calculator-card {
    width: 100%;
    max-width: 100%;
    height: 563px;
    border-radius: 50px;
    background-image: url("/assets/images/home/section-calculator/bg-calculator-desktop.webp");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    box-sizing: border-box;
}

.calculator-card .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.calculator-kicker {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.calculator-title {
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
    font-size: 40.63px;
    line-height: 1.15;
    color: #ffffff;
    text-align: center;
    max-width: 580px;
    margin: 0 auto 16px;
}

.calculator-description {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.45;
    color: #ffffff;
    text-align: center;
    max-width: 668px;
    margin: 0 auto 32px;
}

.btn-calculator {
    width: 156px;
    height: 44px;
    background-color: #399247;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 44px;
    color: #ffffff !important;
    text-transform: uppercase;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    border: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-calculator:hover {
    background-color: #235a59;
    color: #ffffff !important;
    text-decoration: none !important;
}

/* ==========================================================================
   SIGA SEU PROJETO
   ========================================================================== */
.section-check-project {
    background-color: #f1edde;
    padding-top: 122px;
    padding-bottom: 76px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.section-check-project .container {
    width: 100%;
    max-width: 1225px;
}

@media (min-width: 1225px) {
    .section-check-project .container {
        padding: 0 !important;
    }
}

.check-project-wrapper {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 18px;
    max-width: 1225px;
    margin: 0 auto;
}

.check-project-media {
    width: 518px;
    max-width: 100%;
    aspect-ratio: 518 / 414;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
    opacity: 0;
    transform: translateX(-80px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.check-project-media.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.check-project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.check-project-box {
    background-color: #235a59;
    border-radius: 20px;
    max-width: 689px;
    flex: 1;
    padding: 69px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    opacity: 0;
    transform: translateX(80px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.check-project-box.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.check-project-kicker {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 22px;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.check-project-title {
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
    font-size: 40.63px;
    line-height: 1.15;
    color: #ffffff;
    margin: 0 0 16px;
}

.check-project-description {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.45;
    color: #ffffff;
    max-width: 407px;
    margin: 0 0 28px;
}

.check-project-form {
    width: 100%;
}

.check-project-input-group {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.check-project-input {
    width: 100%;
    height: 56px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    padding: 0 60px 0 24px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: #ffffff;
    box-sizing: border-box;
    transition: border-color 0.2s ease;
}

.check-project-input::-moz-placeholder {
    color: #ffffff;
    opacity: 0.7;
}

.check-project-input::placeholder {
    color: #ffffff;
    opacity: 0.7;
}

.check-project-input:focus {
    outline: none;
    border-color: #ffffff;
}

.btn-check-project-search {
    position: absolute;
    right: 6px;
    top: 6px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #399247;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-check-project-search:hover {
    background-color: #2d7739;
}

.btn-check-project-search img {
    width: 24px;
    height: 24px;
    display: block;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.section-faq {
    background-color: #f1edde;
    padding-top: 0;
    padding-bottom: 45px;
    position: relative;
    z-index: 1;
}

.section-faq .decorator-left {
    position: absolute;
    top: 0%;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.section-faq .decorator-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    pointer-events: none;
    z-index: 0;
}

.section-faq .container {
    position: relative;
    z-index: 1;
    max-width: 1031px;
}

.faq-header {
    text-align: center;
    margin-bottom: 36px;
}

.faq-kicker {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2;
    color: #399247;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.faq-title {
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
    font-size: 40.63px;
    line-height: 1.15;
    color: #383521;
    margin: 0 auto;
    text-align: center;
}

.faq-accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
    width: 100%;
}

.faq-accordion-item {
    background-color: #faf6eb;
    border-radius: 8px !important;
    border: none !important;
    box-shadow: none !important;
    overflow: hidden;
    margin: 0 !important;
    transition: background-color 0.2s ease;
}

.faq-accordion-heading {
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
}

.faq-accordion-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: transparent;
    border: none;
    outline: none !important;
    padding: 18px 24px;
    text-align: left;
    cursor: pointer;
    text-decoration: none !important;
}

.faq-accordion-title {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.3;
    color: #383521;
    flex: 1;
}

.faq-accordion-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    transform: rotate(0deg);
}

.faq-accordion-button.collapsed .faq-accordion-icon {
    transform: rotate(-90deg);
}

.faq-accordion-body {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.55;
    color: rgba(60, 60, 67, 0.85);
    padding: 0 24px 18px !important;
    border: none !important;
}

.faq-footer {
    text-align: center;
}

.btn-faq-ver-mais {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #726e51;
    background: transparent;
    color: #383521 !important;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    text-transform: uppercase;
    padding: 9px 22px;
    border-radius: 30px;
    text-decoration: none !important;
    transition: background-color 0.2s ease, border-color 0.2s ease,
        color 0.2s ease;
}

.btn-faq-ver-mais:hover {
    background-color: #235a59 !important;
    border-color: #235a59 !important;
    color: #ffffff !important;
    text-decoration: none !important;
}

/* ==========================================================================
   RESPONSIVE / MEDIA QUERIES (MOBILE)
   ========================================================================== */
@media (max-width: 991px) {
    /* Hero Mobile */
    .hero-section .hero-video {
        scale: 1.1;
    }

    /* Programas e Projetos Mobile */
    .section-programs-projects-home {
        padding: 40px 0 50px;
    }

    .section-programs-projects-home .decorator-left,
    .section-programs-projects-home .decorator-right {
        display: none;
    }

    .programs-projects-header {
        margin-bottom: 0;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .programs-projects-kicker {
        font-size: 14px;
        margin-bottom: 8px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .programs-projects-title {
        font-size: 24px;
        margin-bottom: 14px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .programs-projects-description {
        font-size: 14px;
        margin-bottom: 24px;
        padding-left: 30px;
        padding-right: 30px;
    }

    .slide-titles-wrapper {
        margin-bottom: 25px;
        padding: 0;
    }

    .slide-titles {
        justify-content: flex-start !important;
        margin: 0;
        padding: 0 0 4px;
    }

    .slide-titles .slide-title {
        font-size: 16px;
        padding-bottom: 10px;
    }

    .section-programs-projects-home .programs-projects-swiper {
        padding: 0 15px;
    }

    .section-programs-projects-home .swiper-slide.program-card {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto;
        opacity: 1;
    }

    .program-card-media {
        width: 100%;
        max-width: 100%;
        aspect-ratio: 360 / 288.16;
        height: auto;
        border-radius: 7.81px;
        margin: 0 auto;
    }

    .program-card-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding-top: 16px;
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
    }

    .program-card-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        max-width: 100%;
        width: 100%;
    }

    .program-card-icon {
        width: 41px;
        height: 41px;
    }

    .program-card-description {
        font-size: 14px;
        color: #787878;
        -webkit-line-clamp: 4;
    }

    .program-card-action {
        width: 100%;
        text-align: center;
        margin-top: 8px;
    }

    .btn-program-saiba-mais {
        font-size: 16px;
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
        padding: 12px 24px;
    }

    /* News Mobile */
    .section-news {
        border-radius: 30px 30px 0 0;
        padding: 44px 0 36px;
        margin-top: -24px;
        z-index: 2;
    }

    .section-news .decorator-left {
        width: 130px;
        height: auto;
    }

    .section-news .decorator-right {
        width: 160px;
        height: auto;
    }

    .news-header {
        margin-bottom: 33px;
    }

    .news-kicker {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .news-title {
        font-size: 24px;
    }

    .news-grid {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-bottom: 30px;
    }

    .news-card {
        flex-direction: row;
        border-radius: 10px;
        min-height: 160px;
    }

    .news-card-media {
        order: 1;
        flex: 0 0 46.8%;
        max-width: 46.8%;
        height: auto;
        min-height: 100%;
    }

    .btn-news-read-overlay {
        display: none;
    }

    .news-card-body {
        order: 2;
        flex: 1;
        padding: 14px 30px 14px 14px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .news-card-tag {
        font-size: 10px;
        padding: 8px;
        margin-bottom: 14px;
    }

    .news-card-title {
        font-size: 16px;
        margin: 0 0 6px;
        -webkit-line-clamp: 4;
    }

    .news-card-description {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .btn-news-read-inline {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: 1px solid #726e51;
        border-radius: 20px;
        padding: 4px 14px;
        font-family: "Montserrat", sans-serif;
        font-weight: 700;
        font-size: 14px;
        color: #383521;
        text-transform: uppercase;
    }

    .btn-news-ver-tudo {
        font-size: 16px;
        padding: 10px 36px;
    }

    /* Calculator Mobile */
    .section-calculator {
        padding: 0;
    }

    .calculator-card {
        width: 100%;
        max-width: 100%;
        height: 725px;
        border-radius: 30px;
        background-image: url("/assets/images/home/section-calculator/bg-calculator-mobile.webp");
        padding: 30px 15px;
    }

    .calculator-kicker {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .calculator-title {
        font-size: 30px;
        margin-bottom: 14px;
    }

    .calculator-description {
        font-size: 14px;
        max-width: 320px;
        margin-bottom: 28px;
    }

    /* Check Project Mobile */
    .section-check-project {
        padding-top: 42px;
        padding-bottom: 39px;
    }

    .check-project-wrapper {
        flex-direction: column;
        gap: 10px;
        max-width: 100%;
    }

    .check-project-media {
        width: 100%;
        max-width: 100%;
        aspect-ratio: 360 / 287.72;
        border-radius: 20px;
    }

    .check-project-box {
        max-width: 100%;
        border-radius: 20px;
        padding: 32px 24px;
    }

    .check-project-kicker {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 8px;
    }

    .check-project-title {
        font-size: 30px;
        line-height: 1.15;
        margin-bottom: 12px;
    }

    .check-project-description {
        font-size: 16px;
        line-height: 1.45;
        max-width: 100%;
        margin-bottom: 24px;
    }

    .check-project-input {
        font-size: 16px;
        padding: 0 56px 0 20px;
    }

    .btn-check-project-search {
        right: 6px;
        top: 6px;
        width: 44px;
        height: 44px;
    }

    /* FAQ Mobile */
    .section-faq {
        padding-top: 0;
    }

    .section-faq .decorator-left,
    .section-faq .decorator-right {
        display: none;
    }

    .faq-header {
        margin-bottom: 28px;
    }

    .faq-kicker {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .faq-title {
        font-size: 24px;
    }

    .faq-accordion-wrapper {
        margin-bottom: 30px;
    }

    .faq-accordion-title {
        font-size: 16px;
    }

    .faq-accordion-body {
        font-size: 14px;
    }

    .btn-faq-ver-mais {
        font-size: 16px;
        padding: 9px 22px;
    }
}
