/* ===========================
Index Of css

01. Variables CSS
02. Normalize CSS
03. Utility Classes CSS
04. Sections CSS
05. Scroll Top Button CSS
06. Pagination CSS
07. Button CSS
08. Preloader CSS
09. Header CSS
10. Hero CSS
11. Quick Access Section CSS
12. News Section CSS
13. Agenda Section CSS
14. Banner Acesso à Informação CSS
15. Footer CSS
16. Publicações CSS

/*====================================
    Variables CSS
========================================*/
:root {
  /* Custom CSS Variables */
  /* Colors */
  --color-primary-green: #227436;
  --color-secondary-green: #1d612f;
  --color-accent-gold: #987811;
  --color-accent-gold-light: #dbc6a3;
  --color-background-light: #fbf9ea;
  --color-background-offwhite: #f3f9f3;
  --color-background-grey: #f4f7fa;
  --color-text-light: #ffffff;
  --color-text-dark: #031633;
  --color-text-grey: #727272;
  --color-text-primary-green: #00793a;
  --color-link-default: #987811;
  --color-link-hover: #dbc6a3;

  /* Basic Colors */
  --white: #fff;
  --black: #081828;
  --gray: #f4f7fa;

  /* Theme Color */
  --theme-color: #227436;

  --border-color: #f4eefb;

  /* Body Color */
  --body-color: #dbc6a3;

  /* Heading Color */
  --heading-color: #081828;

  /* WCAG 2.2 Accessibility Variables */
  --focus-color: #987811;
  --focus-width: 3px;
  --high-contrast-bg: #000000;
  --high-contrast-text: #ffffff;
  --high-contrast-link: #ffff00;
  --high-contrast-visited: #ff00ff;
  --min-touch-target: 44px;

  /* Font Size Variables for Scaling */
  --base-font-size: 16px;
  --font-scale-factor: 1;

  /* Font Family Variables */
  --font-family-title: "League Spartan", sans-serif;
  --font-family-body-text: "DM Sans", serif;
  --font-family: "DM Sans", sans-serif;

  /* Border Radius */
  --border-radius-sm: 10px;
  --border-radius-md: 20px;
  --border-radius-lg: 30px;

  --borderRadius: 10px;

  /* Sizes */
  --section-padding: 6rem;

  /* Responsive Variables */
  --desktop: "only screen and (min-width: 1400px)";
  --laptop: "only screen and (min-width: 1200px) and (max-width: 1399px)";
  --lg: "only screen and (min-width: 992px) and (max-width: 1199px)";
  --md: "only screen and (min-width: 768px) and (max-width: 991px)";
  --xs: "(max-width: 767px)";
  --sm: "only screen and (min-width: 480px) and (max-width: 767px)";

  --desktop-min-width: 1522px;
  --laptop-min-width: 1202px;
  --laptop-max-width: 1399px;
  --lg-min-width: 994px;
  --lg-max-width: 1199px;
  --md-min-width: 770px;
  --md-max-width: 991px;
  --xs-max-width: 767px;
  --sm-min-width: 482px;
  --sm-max-width: 767px;
}
/*======================================
    Normalize CSS
========================================*/

/* Google Fonts Import */
@font-face {
  font-family: "League Spartan";
  src: url("../fonts/League_Spartan/LeagueSpartan-VariableFont_wght.ttf")
    format("truetype");
}

@font-face {
  font-family: "DM Sans";
  src: url("../fonts/DM_Sans/DMSans-VariableFont_opsz,wght.ttf")
    format("truetype");
}

html {
  scroll-behavior: smooth;
}

body {
  font-weight: normal;
  font-style: normal;
  color: var(--color-text-grey);
  overflow-x: hidden;
  font-size: var(--base-font-size);
  margin: 0;
  font-family: var(--font-family-body-text);
  background-color: var(--color-background-light);
  color: var(--color-text-dark);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: var(--color-link-default);
}

a:hover,
a:focus,
a:active {
  color: var(--color-link-hover);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.navbar-toggler:focus,
a:focus,
input:focus,
textarea:focus,
button:focus,
.btn:focus,
.btn.focus,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  text-decoration: none;
  outline: none;
  outline: none !important;
  border-color: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.form-check-input:checked {
  background-color: var(--color-accent-gold);
  border-color: var(--color-accent-gold);
}

select {
  -webkit-writing-mode: horizontal-tb !important;
  text-rendering: auto;
  color: var(--color-accent-gold);
  letter-spacing: normal;
  word-spacing: normal;
  text-transform: none;
  text-indent: 0px;
  text-shadow: none;
  display: inline-block;
  text-align: start;
  -webkit-appearance: menulist;
  -moz-appearance: menulist;
  appearance: menulist;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  white-space: pre;
  -webkit-rtl-ordering: logical;
  background-color: -internal-light-dark(white, #3b3b3b);
  cursor: default;
  margin: 0em;
  font: 400 14px;
  border-radius: 0px;
  border-width: 1px;
  border-style: solid;
  border-color: -internal-light-dark(#767676, #858585);
  -o-border-image: initial;
  border-image: initial;
}

span,
a {
  text-decoration: none;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    margin: 0px;
    color: var(--color-primary-green);
    font-family: var(--font-family-title);
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}
/*
h1 {
  font-size: 50px;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 18px;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}
  */

ul,
ol {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}

/*====================================
    Utility Classes CSS
========================================*/

.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-45 {
  margin-top: 45px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-55 {
  margin-top: 55px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-65 {
  margin-top: 65px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-75 {
  margin-top: 75px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-85 {
  margin-top: 85px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-95 {
  margin-top: 95px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-105 {
  margin-top: 105px;
}

.mt-110 {
  margin-top: 110px;
}

.mt-115 {
  margin-top: 115px;
}

.mt-120 {
  margin-top: 120px;
}

.mt-125 {
  margin-top: 125px;
}

.mt-130 {
  margin-top: 130px;
}

.mt-135 {
  margin-top: 135px;
}

.mt-140 {
  margin-top: 140px;
}

.mt-145 {
  margin-top: 145px;
}

.mt-150 {
  margin-top: 150px;
}

.mt-155 {
  margin-top: 155px;
}

.mt-160 {
  margin-top: 160px;
}

.mt-165 {
  margin-top: 165px;
}

.mt-170 {
  margin-top: 170px;
}

.mt-175 {
  margin-top: 175px;
}

.mt-180 {
  margin-top: 180px;
}

.mt-185 {
  margin-top: 185px;
}

.mt-190 {
  margin-top: 190px;
}

.mt-195 {
  margin-top: 195px;
}

.mt-200 {
  margin-top: 200px;
}

.mt-205 {
  margin-top: 205px;
}

.mt-210 {
  margin-top: 210px;
}

.mt-215 {
  margin-top: 215px;
}

.mt-220 {
  margin-top: 220px;
}

.mt-225 {
  margin-top: 225px;
}

.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-55 {
  margin-bottom: 55px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-65 {
  margin-bottom: 65px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-75 {
  margin-bottom: 75px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-85 {
  margin-bottom: 85px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-95 {
  margin-bottom: 95px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb-105 {
  margin-bottom: 105px;
}

.mb-110 {
  margin-bottom: 110px;
}

.mb-115 {
  margin-bottom: 115px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mb-125 {
  margin-bottom: 125px;
}

.mb-130 {
  margin-bottom: 130px;
}

.mb-135 {
  margin-bottom: 135px;
}

.mb-140 {
  margin-bottom: 140px;
}

.mb-145 {
  margin-bottom: 145px;
}

.mb-150 {
  margin-bottom: 150px;
}

.mb-155 {
  margin-bottom: 155px;
}

.mb-160 {
  margin-bottom: 160px;
}

.mb-165 {
  margin-bottom: 165px;
}

.mb-170 {
  margin-bottom: 170px;
}

.mb-175 {
  margin-bottom: 175px;
}

.mb-180 {
  margin-bottom: 180px;
}

.mb-185 {
  margin-bottom: 185px;
}

.mb-190 {
  margin-bottom: 190px;
}

.mb-195 {
  margin-bottom: 195px;
}

.mb-200 {
  margin-bottom: 200px;
}

.mb-205 {
  margin-bottom: 205px;
}

.mb-210 {
  margin-bottom: 210px;
}

.mb-215 {
  margin-bottom: 215px;
}

.mb-220 {
  margin-bottom: 220px;
}

.mb-225 {
  margin-bottom: 225px;
}

.pt-5 {
  padding-top: 5px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-35 {
  padding-top: 35px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-45 {
  padding-top: 45px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-55 {
  padding-top: 55px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-65 {
  padding-top: 65px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-75 {
  padding-top: 75px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-85 {
  padding-top: 85px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-95 {
  padding-top: 95px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-105 {
  padding-top: 105px;
}

.pt-110 {
  padding-top: 110px;
}

.pt-115 {
  padding-top: 115px;
}

.pt-120 {
  padding-top: 120px;
}

.pt-125 {
  padding-top: 125px;
}

.pt-130 {
  padding-top: 130px;
}

.pt-135 {
  padding-top: 135px;
}

.pt-140 {
  padding-top: 140px;
}

.pt-145 {
  padding-top: 145px;
}

.pt-150 {
  padding-top: 150px;
}

.pt-155 {
  padding-top: 155px;
}

.pt-160 {
  padding-top: 160px;
}

.pt-165 {
  padding-top: 165px;
}

.pt-170 {
  padding-top: 170px;
}

.pt-175 {
  padding-top: 175px;
}

.pt-180 {
  padding-top: 180px;
}

.pt-185 {
  padding-top: 185px;
}

.pt-190 {
  padding-top: 190px;
}

.pt-195 {
  padding-top: 195px;
}

.pt-200 {
  padding-top: 200px;
}

.pt-205 {
  padding-top: 205px;
}

.pt-210 {
  padding-top: 210px;
}

.pt-215 {
  padding-top: 215px;
}

.pt-220 {
  padding-top: 220px;
}

.pt-225 {
  padding-top: 225px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-55 {
  padding-bottom: 55px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-65 {
  padding-bottom: 65px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-85 {
  padding-bottom: 85px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-95 {
  padding-bottom: 95px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-105 {
  padding-bottom: 105px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-115 {
  padding-bottom: 115px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pb-125 {
  padding-bottom: 125px;
}

.pb-130 {
  padding-bottom: 130px;
}

.pb-135 {
  padding-bottom: 135px;
}

.pb-140 {
  padding-bottom: 140px;
}

.pb-145 {
  padding-bottom: 145px;
}

.pb-150 {
  padding-bottom: 150px;
}

.pb-155 {
  padding-bottom: 155px;
}

.pb-160 {
  padding-bottom: 160px;
}

.pb-165 {
  padding-bottom: 165px;
}

.pb-170 {
  padding-bottom: 170px;
}

.pb-175 {
  padding-bottom: 175px;
}

.pb-180 {
  padding-bottom: 180px;
}

.pb-185 {
  padding-bottom: 185px;
}

.pb-190 {
  padding-bottom: 190px;
}

.pb-195 {
  padding-bottom: 195px;
}

.pb-200 {
  padding-bottom: 200px;
}

.pb-205 {
  padding-bottom: 205px;
}

.pb-210 {
  padding-bottom: 210px;
}

.pb-215 {
  padding-bottom: 215px;
}

.pb-220 {
  padding-bottom: 220px;
}

.pb-225 {
  padding-bottom: 225px;
}

.align-left {
  text-align: left;
}

.align-right {
  text-align: right;
}

.align-center {
  text-align: center;
}

.img-bg {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

.container {
  width: 100%;
  max-width: var(--desktop-min-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .container {
    width: 450px;
  }
}

/*====================================
    Sections CSS
========================================*/

.section {
  padding-top: 110px;
  padding-bottom: 110px;
  position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

@media (max-width: 767px) {
  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

/* Section Title */
.section-title {
  text-align: center;
  margin-bottom: 80px;
  padding: 0 300px;
  position: relative;
  z-index: 5;
  color: var(--color-primary-green);
  font-family: var(--font-family-title);
  font-weight: 700;
  line-height: 42px;
  text-align: center;
  margin: 0;
}

    .section-title h3 {
        font-size: 15px;
        font-weight: 600;
        display: inline-block;
        margin-bottom: 20px;
        color: var(--color-primary-green);
        text-transform: capitalize;
    }

.section-title h2 {
  font-size: 34px;
  margin-bottom: 20px;
  line-height: 42px;
  text-transform: capitalize;
  position: relative;
  font-weight: 700;
}

.section-title p {
  font-size: 16px;
  line-height: 28px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-title {
    padding: 0px 200px;
    margin-bottom: 70px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title {
    padding: 0px 20px;
    margin-bottom: 50px;
  }
  .section-title h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
  }
  .section-title h2 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 20px;
  }
  .section-title p {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .section-title {
    padding: 0px 10px;
    margin-bottom: 40px;
  }
  .section-title h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
  }
  .section-title h2 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 18px;
  }
  .section-title p {
    font-size: 15px;
  }
}

.section-title.align-right {
  padding: 0;
  padding-left: 600px;
}

.section-title.align-right h2:before {
  display: none;
}

.section-title.align-right h2:after {
  position: absolute;
  right: 0;
  bottom: -1px;
  height: 2px;
  width: 50px;
  background:var(--color-primary-green);
  content: "";
}

.section-title.align-left {
  padding: 0;
  padding-right: 600px;
}

.section-title.align-left h2:before {
  left: 0;
  margin-left: 0;
}

.section-subtitle {
  color: rgba(0, 57, 27, 0.89);
  font-family: var(--font-family-body-text);
  font-size: 17px;
  line-height: 22px;
  text-align: center;
  max-width: 50%;
  margin: 0 auto;
}

@media (max-width: 991px) {
    .section-subtitle {
        max-width: 100%;
    }
}

.title-decorator {
    width: 56px;
    height: 2px;
    background-color: var(--color-secondary-green);
    margin: 15px auto;
}

    /*====================================
    Scroll Top Button CSS
========================================*/
    .scroll-top {
        width: 45px;
        height: 45px;
        line-height: 45px;
        background: var(--white);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        font-size: 14px;
        color: var(--color-accent-gold) !important;
        position: fixed;
        bottom: 30px;
        right: 30px;
        z-index: 90;
        cursor: pointer;
        -webkit-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s;
        border-radius: 50%;
    }

        .scroll-top i {
            font-weight: bolder;
        }

        .scroll-top:hover {
            -webkit-box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
            box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
            -webkit-transform: translate3d(0, -5px, 0);
            transform: translate3d(0, -5px, 0);
            background-color: var(--color-accent-gold);
            color: var(--white) !important;
        }

    /* Overlay */
    .overlay {
        position: relative;
        z-index: 1;
    }

        .overlay::before {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.4;
            background: #081828;
            content: "";
            -webkit-transition: all 0.4s ease;
            transition: all 0.4s ease;
            z-index: -1;
        }

    /*====================================
    Pagination CSS
========================================*/

    .pagination {
        text-align: left;
        margin: 60px 0 0 0;
        display: block;
    }

    @media only screen and (min-width: 768px) and (max-width: 991px) {
        .pagination {
            margin-top: 50px;
        }
    }

    @media (max-width: 767px) {
        .pagination {
            margin-top: 40px;
        }
    }

    .pagination.center {
        text-align: center;
    }

    .pagination.right {
        text-align: right;
    }

    .pagination.left {
        text-align: left;
    }

    .pagination .pagination-list {
        display: inline-block;
        overflow: hidden;
    }

        .pagination .pagination-list li {
            margin-right: 5px;
            display: inline-block;
            margin-top: 10px;
        }

            .pagination .pagination-list li:last-child {
                margin-right: 0px;
            }

            .pagination .pagination-list li a {
                background: #fff;
                color: #081828;
                font-weight: 500;
                font-size: 15px;
                border-radius: 5px;
                padding: 8px 20px;
                text-align: center;
                border: 1px solid #eee;
            }

            .pagination .pagination-list li.active a,
            .pagination .pagination-list li:hover a {
                background: var(--color-accent-gold);
                color: #fff;
                border-color: transparent;
            }

            .pagination .pagination-list li a i {
                font-size: 13px;
            }

    .blog-grids.pagination {
        margin-top: 50px;
        text-align: center;
    }

    /*====================================
    Button CSS
========================================*/
    .btn {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        padding: 10px 16px;
        border-radius: var(--border-radius-lg);
        font-family: var(--font-family-body-text);
        font-size: 16px;
        font-weight: 400;
        line-height: 18px;
        text-align: center;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    @media only screen and (min-width: 768px) and (max-width: 991px) {
        .button .btn {
            padding: 14px 25px;
            font-size: 14px;
            font-weight: 500;
        }
    }

    @media (max-width: 767px) {
        .button .btn {
            padding: 14px 25px;
            font-size: 14px;
            font-weight: 500;
        }
    }

    .button .btn i {
        display: inline-block;
        margin-right: 5px;
    }

    .button .btn:last-child {
        margin: 0;
    }

    .button {
        margin-left: 0 !important;
    }

        .button .btn-alt {
            background-color: #081828 !important;
            color: #fff !important;
        }

    @media only screen and (min-width: 768px) and (max-width: 991px) {
        .button .btn-alt {
            padding: 14px 25px;
            font-size: 14px;
            font-weight: 500;
        }
    }

    @media (max-width: 767px) {
        .button .btn-alt {
            padding: 14px 25px;
            font-size: 14px;
            font-weight: 500;
        }
    }

    .button .btn-alt:hover {
        background-color: var(--color-accent-gold) !important;
        color: #fff !important;
    }

    .btn-gold {
        border: 2px solid var(--color-accent-gold);
        color: var(--color-accent-gold);
        background-color: var(--color-text-light);
    }

        .btn-gold:hover {
            background-color: var(--color-accent-gold);
            color: var(--color-text-light);
        }

    .btn-outline-gold {
        border: 2px solid var(--color-accent-gold);
        color: var(--color-accent-gold);
        background-color: transparent;
    }

        .btn-outline-gold:hover {
            background-color: var(--color-accent-gold);
            color: var(--color-text-light);
        }

    /*====================================
    Preloader CSS
========================================*/
    .preloader {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 999999999;
        width: 100%;
        height: 100%;
        background-color: #fff;
        overflow: hidden;
    }

    .preloader-inner {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

    .preloader-icon {
        width: 100px;
        height: 100px;
        display: inline-block;
        padding: 0px;
    }

        .preloader-icon span {
            position: absolute;
            display: inline-block;
            width: 100px;
            height: 100px;
            border-radius: 100%;
            background: var(--color-primary-green);
            -webkit-animation: preloader-fx 1.6s linear infinite;
            animation: preloader-fx 1.6s linear infinite;
        }

            .preloader-icon span:last-child {
                animation-delay: -0.8s;
                -webkit-animation-delay: -0.8s;
            }

    @keyframes preloader-fx {
        0% {
            -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
            opacity: 0.5;
        }

        100% {
            -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
            opacity: 0;
        }
    }

    @-webkit-keyframes preloader-fx {
        0% {
            -webkit-transform: scale(0, 0);
            opacity: 0.5;
        }

        100% {
            -webkit-transform: scale(1, 1);
            opacity: 0;
        }
    }

    /*======================================
	Header CSS
========================================*/
    .header {
        width: 100%;
        background: transparent;
        position: absolute;
        width: 100%;
        left: 0;
        top: 0;
    }

    @media only screen and (min-width: 768px) and (max-width: 991px) {
        .header {
            padding: 0 !important;
        }

            .header .mobile-menu-btn .toggler-icon {
                background-color: #fff;
            }

            .header .button {
                margin: 0 !important;
            }

            .header .navbar-collapse {
                position: absolute;
                top: 52px !important;
                left: 0;
                width: 100%;
                background-color: #fff;
                z-index: 9;
                -webkit-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
                box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
                padding: 10px 20px;
                max-height: 390px;
                overflow-y: scroll;
                overflow-x: hidden;
                border-top: 1px solid #eee;
                border-radius: 8px;
            }

            .header .navbar .navbar-nav .nav-item a:hover {
                color: var(--color-link-hover) !important;
            }

            .header .navbar .navbar-nav .nav-item a.active {
                color: var(--color-link-hover) !important;
            }

            .header .navbar-nav .nav-item {
                margin: 0;
            }

                .header .navbar-nav .nav-item:hover a {
                    color: var(--color-link-hover);
                }

                .header .navbar-nav .nav-item a {
                    padding: 12px 16px !important;
                }

                    .header .navbar-nav .nav-item a::before {
                        display: none;
                    }

                .header .navbar-nav .nav-item .sub-menu {
                    position: static;
                    width: 100%;
                    opacity: 1;
                    visibility: visible;
                    -webkit-box-shadow: none;
                    box-shadow: none;
                    border: none;
                    padding: 15px;
                    background-color: var(--color-background-light);
                }

                    .header .navbar-nav .nav-item .sub-menu .nav-item a {
                        padding: 12px 12px;
                    }

                        .header .navbar-nav .nav-item .sub-menu .nav-item a:hover {
                            color: var(--color-link-hover) !important;
                        }

                .header .navbar-nav .nav-item a {
                    color: var(--color-link-default);
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: flex;
                    -webkit-box-pack: justify;
                    -ms-flex-pack: justify;
                    justify-content: space-between;
                    padding: 10px 0;
                }

                    .header .navbar-nav .nav-item a::after {
                        opacity: 1;
                        visibility: visible;
                    }

                .header .navbar-nav .nav-item .sub-menu li.active {
                    background: #fff !important;
                    color: var(--color-link-hover) !important;
                }

                .header .navbar-nav .nav-item .sub-menu .nav-item {
                    margin: 0 !important;
                }

                    .header .navbar-nav .nav-item .sub-menu .nav-item a {
                        padding: 10px 12px !important;
                    }

                .header .navbar-nav .nav-item .sub-menu li:hover {
                    color: var(--color-link-hover) !important;
                }

                .header .navbar-nav .nav-item a {
                    font-size: 14px;
                }

                    .header .navbar-nav .nav-item a:hover {
                        color: var(--color-link-hover);
                    }
    }

    @media (max-width: 767px) {
        .header,
        .navbar-area.sticky,
        .header .top-bar {
            padding: 5px 0 !important;
        }

        .header .mobile-menu-btn .toggler-icon {
            background-color: #fff;
        }

        .header .navbar-collapse {
            position: absolute;
            top: 52px !important;
            left: 0;
            width: 100%;
            background-color: #fff;
            z-index: 9;
            -webkit-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
            padding: 10px 20px;
            max-height: 390px;
            overflow-y: scroll;
            overflow-x: hidden;
            border-top: 1px solid #eee;
            border-radius: 8px;
        }

        .header .navbar .navbar-nav .nav-item a:hover {
            color: var(--color-link-hover) !important;
        }

        .header .navbar .navbar-nav .nav-item a.active {
            color: var(--color-link-hover) !important;
        }

        .header .navbar-nav .nav-item {
            margin: 0;
        }

            .header .navbar-nav .nav-item:hover a {
                color: var(--color-link-hover);
            }

            .header .navbar-nav .nav-item a {
                padding: 12px 16px !important;
            }

                .header .navbar-nav .nav-item a::before {
                    display: none;
                }

            .header .navbar-nav .nav-item .sub-menu {
                position: static;
                width: 100%;
                opacity: 1;
                visibility: visible;
                -webkit-box-shadow: none;
                box-shadow: none;
                border: none;
                padding: 15px;
                background-color: var(--color-background-light);
            }

                .header .navbar-nav .nav-item .sub-menu .nav-item a {
                    padding: 12px 12px;
                }

                    .header .navbar-nav .nav-item .sub-menu .nav-item a:hover {
                        color: var(--color-link-hover) !important;
                    }

            .header .navbar-nav .nav-item a {
                color: var(--color-accent-gold);
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-pack: justify;
                -ms-flex-pack: justify;
                justify-content: space-between;
                padding: 10px 0;
            }

                .header .navbar-nav .nav-item a::after {
                    opacity: 1;
                    visibility: visible;
                }

            .header .navbar-nav .nav-item .sub-menu li.active {
                background: #fff !important;
                color: var(--color-link-hover) !important;
            }

            .header .navbar-nav .nav-item .sub-menu .nav-item {
                margin: 0 !important;
            }

                .header .navbar-nav .nav-item .sub-menu .nav-item a {
                    padding: 10px 12px !important;
                }

            .header .navbar-nav .nav-item .sub-menu li:hover {
                color: var(--color-link-hover) !important;
            }

            .header .navbar-nav .nav-item a {
                font-size: 14px;
            }

                .header .navbar-nav .nav-item a:hover {
                    color: var(--color-link-hover);
                }
    }

    .header .top-bar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 13px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.5);
        color: var(--color-text-light);
        font-family: "DM Sans", sans-serif;
        font-size: 13px;
    }

        .header .top-bar .accessibility-links ul li a:hover,
        .header .top-bar .accessibility-links ul li a:focus,
        .header .top-bar .accessibility-links ul li a:active,
        .header .top-bar .header-actions a:hover,
        .header .top-bar .header-actions a:focus,
        .header .top-bar .header-actions a:active {
            color: var(--color-accent-gold-light) !important;
        }

    .sticky .top-bar .accessibility-links ul li a:hover,
    .sticky .top-bar .accessibility-links ul li a:focus,
    .sticky .top-bar .accessibility-links ul li a:active,
    .sticky .top-bar .header-actions a:hover,
    .sticky .top-bar .header-actions a:focus,
    .sticky .top-bar .header-actions a:active {
        color: var(--color-link-default) !important;
    }

    .header .top-bar .header-actions {
        display: flex;
        align-items: center;
    }

    .sticky .top-bar {
        padding: 0 !important;
    }

    @media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
        .sticky .top-bar {
            display: none !important;
            padding: 0 !important;
        }

        .header .top-bar .accessibility-links ul li.list-item-acesso-info span,
        .header .top-bar .header-actions .link-webmail span,
        .header .top-bar .header-actions .link-acesso-restrito span {
            font-size: 11px;
            white-space: nowrap;
        }
        .header .top-bar .accessibility-links ul li.list-item-acesso-info ~ li {
            display: none !important;
        }
    }

    .header .top-bar .accessibility-links ul li {
        max-height: 20px;
        display: flex;
        align-items: center;
    }

        .header .top-bar .accessibility-links ul li a i {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .header .top-bar .accessibility-links ul li.list-item-acesso-info a i {
            max-width: 12px;
        }

        .header .top-bar .accessibility-links ul li a span.span-link-font {
            display: flex;
            align-items: center;
            font-size: x-large;
        }

    .sticky .top-bar .accessibility-links ul li a,
    .sticky .top-bar .header-actions a {
        color: var(--color-text-primary-green) !important;
    }
    /*
.sticky .top-bar .accessibility-links ul li.list-item-acesso-info {
  display: none !important;
}

.sticky .top-bar .header-actions a.link-webmail {
  display: none !important;
}
*/

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .header .top-bar .header-actions .search-form {
        display: none;
    }
}

.header .top-bar .header-actions .search-form input,
.header .navbar .search-form input {
    background-color: #f3f9f3;
    border: 2px solid var(--color-accent-gold);
    border-radius: 20px;
    color: var(--color-accent-gold);
    font-family: "DM Sans", sans-serif;
}
.header .top-bar .header-actions .search-form input {
    width: 305px;
}

    .header .top-bar .header-actions .search-form input:hover,
    .header .top-bar .header-actions .search-form input:focus,
    .header .top-bar .header-actions .search-form input:active,
    .header .navbar .search-form input:hover,
    .header .navbar .search-form input:focus,
    .header .navbar .search-form input:active {
        background-color: var(--color-background-light);
    }

    .header .top-bar .header-actions .search-form input::placeholder,
    .header .navbar .search-form input::placeholder {
        color: var(--color-accent-gold);
        opacity: 1;
    }

.header .top-bar .header-actions .search-form button,
.header .navbar .search-form button {
    cursor: pointer;
    padding: 10px;
    color: var(--color-accent-gold);
    box-shadow: none;
}

    .header .navbar-brand img {
        width: 311px;
    }

    .header.sticky .navbar-brand img {
        width: 233px;
    }

    @media only screen and (min-width: 768px) and (max-width: 991px) {
        .header .navbar-brand img {
            width: 240px;
        }
    }

    @media (max-width: 767px) {
        .header .navbar-brand img,
        .header.sticky .navbar-brand img {
            width: 200px;
        }
    }

    .header.sticky .button .btn {
        background-color: var(--color-background-grey);
        color: #fff;
    }

        .header.sticky .button .btn:hover {
            background-color: #081828;
            color: #fff;
        }

    .header .navbar .navbar-nav .nav-item a.active {
        color: #fff;
    }

    .sticky .navbar .navbar-nav .nav-item a.active {
        color: var(--color-link-hover);
    }

    .sticky .navbar .navbar-nav .nav-item a {
        color: var(--color-link-default) !important;
    }

.header .navbar .navbar-nav .nav-item .sub-menu a.active {
    color: var(--color-link-hover);
}

.sticky .navbar .navbar-nav .nav-item .sub-menu a.active {
    color: var(--color-link-hover);
}

    .sticky .navbar .mobile-menu-btn .toggler-icon {
        background: #333;
    }

    /*===== NAVBAR =====*/
    .navbar-area {
        width: 100%;
        z-index: 99;
        -webkit-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s;
        padding: 0;
    }

        .navbar-area.sticky {
            background-color: #fff;
            position: fixed;
            z-index: 99;
            -webkit-box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
            box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
            -webkit-transition: all 0.3s ease-out 0s;
            transition: all 0.3s ease-out 0s;
            padding: 0px 0;
            border-bottom: 2px solid var(--color-primary-green);
        }

    @media only screen and (min-width: 768px) and (max-width: 991px) {
        .navbar-area.sticky {
            padding: 0 0 !important;
        }
    }

    .navbar {
        padding: 0;
        position: relative;
        -webkit-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s;
    }

    .sticky .navbar.py-lg-4 {
        padding: 0 0 !important;
    }

    .navbar-brand {
        padding-left: 0;
        border-radius: 0;
    }

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .navbar-brand {
        padding-top: 1rem;
    }

    .sticky .navbar .navbar-brand {
        padding-top: .3125rem;
    }
}

    .mobile-menu-btn {
        padding: 0px;
    }

        .mobile-menu-btn:focus {
            text-decoration: none;
            outline: none;
            -webkit-box-shadow: none;
            box-shadow: none;
        }

        .mobile-menu-btn .toggler-icon {
            width: 30px;
            height: 2px;
            background-color: #222;
            display: block;
            margin: 5px 0;
            position: relative;
            -webkit-transition: all 0.3s ease-out 0s;
            transition: all 0.3s ease-out 0s;
        }

        .mobile-menu-btn.active .toggler-icon:nth-of-type(1) {
            -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
            top: 7px;
        }

        .mobile-menu-btn.active .toggler-icon:nth-of-type(2) {
            opacity: 0;
        }

        .mobile-menu-btn.active .toggler-icon:nth-of-type(3) {
            -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
            top: -7px;
        }

    .navbar-nav .nav-item {
        z-index: 1;
        position: relative;
    }

    @media only screen and (min-width: 992px) {
        .navbar-nav .nav-item {
            position: static !important;
        }
    }

    .navbar-nav .nav-item:last-child {
        margin-right: 0 !important;
    }

    .navbar-nav .nav-item:hover a {
        color: var(--color-accent-gold-light);
    }

    .sticky .navbar-nav .nav-item a {
        font-size: 20px !important;
    }

    .sticky .navbar-nav .nav-item:hover > a {
        color: var(--color-link-hover) !important;
    }

    .navbar-nav .nav-item a {
        font-size: 22px !important;
        color: var(--color-text-light);
        -webkit-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s;
        position: relative;
        padding: 0 !important;
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        font-family: "League Spartan", sans-serif;
        font-weight: 500;
        transition: all 0.3s ease-out 0s;
        position: relative;
        text-transform: capitalize;
    }

    .navbar-nav > .nav-item > a {
        min-height: 60px;
    }

    .sticky .navbar .navbar-nav > .nav-item > a {
        min-height: 50px;
    }

    .navbar-nav .nav-item a::after {
        opacity: 0;
        visibility: hidden;
    }

    .navbar-nav .nav-item:hover a:before {
        width: 100%;
    }

    .navbar-nav .nav-item a.active {
        color: #fff;
    }

    .navbar-nav .nav-item a.dd-menu::after {
        display: inline-block;
        content: "";
        vertical-align: -.125em;
        background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='rgb(152,120,17)' class='bi bi-caret-down-fill' viewBox='0 0 16 16'> <path d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/> </svg>");
        background-repeat: no-repeat;
        background-size: 1rem 1rem;
        background-position: center center;
        right: 17px;
        font-size: 10px;
        top: 50%;
        margin-left: 5px;
        margin-top: 0px;
        -webkit-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s;
        height: 1rem;
        width: 1rem;
        color: var(--color-accent-gold);
    }

    @media only screen and (min-width: 992px) and (max-width: 1199px) {
        .navbar-nav .nav-item a.dd-menu::after {
            right: 13px;
        }
    }

    @media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
        .navbar-nav .nav-item a.dd-menu::after {
            top: 18px;
            right: 0;
            -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
        }
    }

    @media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
        .navbar-nav .nav-item a.collapsed::after {
            -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
        }
    }

    .navbar-nav .nav-item:hover > .sub-menu {
        /*top: 100%;*/
        opacity: 1;
        visibility: visible;
    }

        .navbar-nav .nav-item:hover > .sub-menu .sub-menu {
            left: 100%;
            top: 0;
        }

    .navbar-nav .nav-item .sub-menu {
        padding: 30px;
        min-width: 240px;
        background-color: #fff;
        -webkit-box-shadow: 0px 5px 20px #0000001a;
        box-shadow: 0px 5px 20px #0000001a;
        position: absolute;
        /*top: 100% !important;*/
        left: 0;
        opacity: 0;
        visibility: hidden;
        -webkit-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s;
        border-radius: 0 0 4px 4px;
        border-radius: 5px;
    }

    @media (min-width: 992px) {
        .navbar-nav > .nav-item > .sub-menu {
            display: flex !important;
            flex-wrap: wrap;
            gap: 2% !important;
            list-style-type: none !important;
            width: 100% !important;
        }

            .navbar-nav > .nav-item > .sub-menu > .nav-item {
                width: 100%;
                margin-bottom: 15px;
                flex-basis: 31.333%;
                margin-bottom: 15px;
            }

                .navbar-nav > .nav-item > .sub-menu > .nav-item:only-child {
                    width: 100%;
                    margin-bottom: 15px;
                    flex-basis: 100%;
                    margin-bottom: 15px;
                }

                    .navbar-nav > .nav-item > .sub-menu > .nav-item:only-child > ul {
                        display: flex !important;
                        flex-wrap: wrap;
                        gap: 2% !important;
                        list-style-type: none !important;
                        width: 100% !important;
                    }

                        .navbar-nav > .nav-item > .sub-menu > .nav-item:only-child > ul > li {
                            width: 100%;
                            margin-bottom: 15px;
                            flex-basis: 31.333%;
                            margin-bottom: 15px;
                        }
    }

    .navbar-nav .nav-item:hover .sub-menu {
        /*top: 100% !important;*/
    }

    .navbar-nav .nav-item .sub-menu .nav-item {
        width: 100%;
        margin-bottom: 15px;
    }

        .navbar-nav .nav-item .sub-menu .nav-item h5,
        .navbar-nav .nav-item .sub-menu .nav-item ul{
            margin-bottom: 15px;
        }
    .navbar-nav .nav-item .sub-menu .nav-item:last-child {
            margin: 0;
        }

        .navbar-nav .nav-item .sub-menu .nav-item a {
            font-family: var(--font-family-body-text) !important;
            font-size: var(--base-font-size) !important;
            padding: 0;
            color: var(--color-link-default);
            display: block;
            width: 100%;
            font-size: 14px;
            font-weight: 500;
            text-transform: capitalize;
            position: relative;
            z-index: 1;
            border-radius: 4px;
            overflow: hidden;
            -webkit-transition: all 0.1s ease;
            transition: all 0.1s ease;
        }

            .navbar-nav .nav-item .sub-menu .nav-item a:hover {
                color: var(--color-link-hover);
            }

    .navbar-nav .nav-item .sub-menu.left-menu {
        left: -100%;
    }

    .navbar-nav .nav-item .sub-menu.collapse:not(.show) {
        display: block;
    }

    @media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
        .navbar-nav .nav-item .sub-menu.collapse:not(.show) {
            display: none;
        }
    }

    .navbar-nav .nav-item .sub-menu > li {
        display: block;
        margin-left: 0;
    }

        .navbar-nav .nav-item .sub-menu > li:last-child {
            border: none;
        }

        .navbar-nav .nav-item .sub-menu > li.active > a {
            color: var(--color-primary-green) !important;
        }

        .navbar-nav .nav-item .sub-menu > li > a {
            font-weight: 400;
            display: block;
            padding: 12px 15px;
            font-size: 14px;
            color: #222;
            font-weight: 400;
        }

        .navbar-nav .nav-item .sub-menu > li:first-child a {
            border: none;
        }

.sticky .navbar-nav .nav-item > a.active {
    color: #dbc6a3 !important;
}

.header .navbar .navbar-nav .nav-item a.active {
    color: #dbc6a3 !important;
}

    a.nav-link.text-light {
        color: var(--color-text-light);
        font-family: var(--font-family-title) !important;
    }

        a.nav-link.text-light:focus,
        a.nav-link.text-light:hover {
            color: var(--color-accent-gold-light) !important;
        }

    .header .button {
        display: inline-block;
        margin-left: 10px;
    }

    @media (max-width: 767px) {
        .header .button {
            display: none;
        }
    }

    .header .button .btn {
        background-color: #fff;
        color: #081828;
        font-weight: 500;
    }

        .header .button .btn:hover {
            color: #fff;
            background-color: var(--color-link-hover);
        }

    .header .button.home-btn .btn:hover {
        background-color: #081828;
        color: #fff;
    }

    .sticky .button .btn {
        background-color: var(--color-link-hover);
        color: #fff;
    }

        .sticky .button .btn:hover {
            background-color: var(--color-link-hover);
            color: #fff;
        }

    @media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
        .header .button .signin {
            color: #081828;
        }

            .header .button .signin:hover {
                color: var(--color-link-hover);
            }

        .header .button .signup {
            background-color: var(--color-link-hover);
            color: #fff;
        }

            .header .button .signup:hover {
                background-color: var(--color-link-hover);
                color: #fff;
            }
    }


    /*======================================
    Hero Area CSS
========================================*/
.hero-area {
    background-image: radial-gradient( 173.07% 205.27% at 50% 50%, rgba(34, 116, 54, 0.8) 59.13%, rgba(57, 139, 54, 0.8) 79.81%, rgba(79, 162, 54, 0.8) 100% ), url("../images/hero-bg/hero-bg.png");
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    padding: var(--section-padding) 0;
}

        .hero-area.hero-pages {
            padding: 7vh 0 5vh !important;
        }

.hero-area .hero-shape {
    position: absolute;
    left: 0;
    bottom: -1px;
    z-index: -1;
}

    @media only screen and (min-width: 768px) and (max-width: 991px) {
        .hero-area {
            padding: 200px 0 100px 0;
        }
        .hero-area.hero-pages {
            padding-top: 14vh !important;
        }
    }

    @media (max-width: 767px) {
        .hero-area {
            padding: 160px 0 80px 0;
        }
        .hero-area.hero-pages {
            padding-top: 14vh !important;
        }
    }

    .hero-area .hero-content {
        border-radius: 0;
        position: relative;
        z-index: 1;
        text-align: left;
        padding: 15vh 0 0 0;
    }

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-area .hero-content {
            padding: 0px 140px;
        }
    }

    .hero-area .hero-content h4 {
        font-family: "DM Sans", sans-serif;
        font-size: 18px;
        font-weight: 400;
        color: var(--color-background-light);
        margin: 0 0 8px 0;
    }

    .hero-area .hero-content h1 {
        font-family: "League Spartan", sans-serif;
        font-weight: 800 !important;
        font-size: 38px;
        line-height: 50px;
        color: var(--color-background-light) !important;
        text-transform: uppercase;
        margin: 0 0 8px 0;
    }

        .hero-area .hero-content h1 .highlight {
            color: #dbc6a3;
        }

    .hero-area .hero-content p {
        font-weight: 400;
        font-size: 16px;
        line-height: 28px;
        font-family: "DM Sans", sans-serif;
        color: var(--color-text-light) !important;
        margin: 0;
    }

        .hero-area .hero-content p.hero-warning {
            padding-top: 24px;
            font-weight: 600;
        }

    @media only screen and (min-width: 768px) and (max-width: 991px) {
        .hero-area .hero-content .button {
            margin-top: 30px !important;
            width: 100%;
        }
    }

    @media (max-width: 767px) {
        .hero-area .hero-content .button {
            margin-top: 30px;
            width: 100%;
        }
    }

    .hero-area .hero-content .button .btn {
        padding: 14px 30px;
        font-size: 15px;
    }

    @media (max-width: 767px) {
        .hero-area .hero-content .button .btn {
            width: 100%;
        }
    }

    @media only screen and (min-width: 992px) and (max-width: 1199px) {
        .hero-area .hero-content h1 {
            font-size: 40px;
        }
    }

    @media only screen and (min-width: 768px) and (max-width: 991px) {
        .hero-area .hero-content {
            text-align: center;
        }

            .hero-area .hero-content h1 {
                font-size: 30px;
                font-weight: 700;
                line-height: 38px;
            }

            .hero-area .hero-content p {
                font-size: 15px;
            }
    }

    @media (max-width: 767px) {
        .hero-area .hero-content {
            padding: 0 10px;
            text-align: center;
        }

            .hero-area .hero-content h1 {
                font-size: 24px;
                line-height: 32px;
            }

            .hero-area .hero-content p {
                margin-top: 15px;
                font-size: 15px;
                line-height: 26px;
            }

            .hero-area .hero-content .button .btn {
                width: 60%;
                margin: 0;
                margin-bottom: 7px;
            }

                .hero-area .hero-content .button .btn:last-child {
                    margin: 0;
                }
    }

    .hero-area .hero-image {
        text-align: center;
    }

    @media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
        .hero-area .hero-image {
            display: none;
        }
    }

    .hero-area .hero-image img {
        width: 400px;
    }

    .breadcrumbs a {
        color: var(--color-accent-gold-light);
    }

    .breadcrumbs a:hover,
    .breadcrumbs a:active,
    .breadcrumbs a:focus {
        color: var(--color-link-hover) !important;
    }

    /*======================================
    Quick Access Section CSS
========================================*/

    .quick-access-section {
        padding: 32px 0;
        margin-top: -50px;
        position: relative;
        z-index: 10;
    }

    .quick-access-container {
        max-width: 1005px;
        margin: 0 auto;
        background-color: var(--color-background-offwhite) #f3f9f3;
        border-radius: 8px;
        box-shadow: 0px 20px 60px 0px rgba(0, 0, 0, 0.25);
        padding: 24px;
    }

    .quick-access-item {
        transition: transform 0.3s ease;
    }

        .quick-access-item:hover {
            transform: translateY(-5px);
            color: var(--color-accent-gold) !important;
        }

            .quick-access-item:hover .icon-wrapper {
                background-color: var(--color-accent-gold-light);
            }

    .quick-access-grid {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 24px;
        margin-top: 24px;
    }

    .quick-access-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        width: 111px;
        text-align: center;
        color: var(--color-accent-gold);
        font-family: "League Spartan", sans-serif;
        font-size: 12px;
        line-height: 1.4;
    }

        .quick-access-item .icon-wrapper.youtube.ao-vivo {
            background-color: var(--color-accent-gold);
        }

            .quick-access-item .icon-wrapper.youtube.ao-vivo i {
                color: var(--white);
            }

        .quick-access-item .icon-wrapper.youtube .live-indicator {
            display: none;
        }

        .quick-access-item .icon-wrapper.youtube.ao-vivo .live-indicator {
            display: block;
            position: absolute;
            width: 100%;
            top: 47px;
            color: #fff !important;
        }

        .quick-access-item .icon-wrapper {
            position: relative;
            width: 112px;
            height: 96px;
            margin-bottom: 8px;
            border: 2px solid var(--color-accent-gold);
            border-radius: var(--border-radius-sm);
        }

            .quick-access-item .icon-wrapper::after {
                content: "";
                position: absolute;
                left: 0;
                right: 0;
                bottom: -0.8rem;
                border-bottom: 0.35rem solid var(--color-accent-gold);
                border-radius: var(--border-radius-sm);
            }

            .quick-access-item .icon-wrapper img {
                position: absolute;
            }

    .live-text {
        font-family: "League Spartan", sans-serif;
        font-weight: 600;
        font-size: 13px;
        text-align: center;
    }

    @media (max-width: 768px) {
        .quick-access-section {
            margin-top: 0;
            padding: 20px;
        }

        .quick-access-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        }
    }

    /*======================================
    News Section CSS
========================================*/
    /* CSS for section section:news */
    .news-section {
        padding: 12px 0 40px 0;
    }

    .title-container {
        padding-bottom: 50px;
    }

    .news-grid {
        display: flex;
        flex-wrap: nowrap;
        gap: 24px;
        overflow: visible;
    }

    .news-card {
        background-color: var(--color-text-light);
        border-radius: 8px;
        box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.09);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        cursor: grab;
    }

    .news-card-image {
        width: 100%;
        object-fit: cover;
    }

    .news-card-content {
        padding: 35px;
        display: flex;
        flex-direction: column;
        gap: 19px;
        flex-grow: 1;
    }

    .news-card-date {
        display: flex;
        align-items: center;
        gap: 3px;
        color: var(--color-primary-green);
        font-family: "Inter", sans-serif;
        font-size: 12px;
        font-weight: 500;
        margin: 0;
    }

    .news-card-title {
        font-family: "DM Sans", sans-serif;
        font-size: 17px;
        font-weight: 700;
        line-height: 24px;
        color: var(--color-accent-gold);
        margin: 0;
    }

        .news-card-title a:hover {
            text-decoration: underline;
        }

    .news-card-excerpt {
        font-family: "DM Sans", sans-serif;
        font-size: 15px;
        line-height: 20px;
        color: var(--color-text-grey);
        margin: 0;
        flex-grow: 1;
    }

    .news-card .btn {
        align-self: flex-start;
        margin-top: 18px;
    }

    .all-news-button {
        text-align: center;
        padding-top: 72px;
    }

        .all-news-button .btn {
            padding: 10px 30px;
        }

    /* Indicadores do carrossel - estilo dourado */
    .carousel-indicators [data-bs-target] {
        background-color: #c7a33f; /* dourado */
        width: 12px;
        height: 12px;
        border-radius: 50%;
        opacity: 0.6;
        transition: all 0.3s ease;
        margin: 0 5px;
    }

    .carousel-indicators .active {
        background-color: #c7a33f; /* dourado mais forte */
        opacity: 1;
        transform: scale(1.2);
    }

    .news-grid .row > .col {
        padding-left: 16px;
        padding-right: 16px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        top: 50%;
        transform: translateY(-50%);
        opacity: 1 !important;
    }

    .carousel-control-prev-icon.custom-carousel-icon,
    .carousel-control-next-icon.custom-carousel-icon {
        background-image: none !important;
        width: 2rem;
        height: 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

        .carousel-control-prev-icon.custom-carousel-icon::after {
            content: "";
            display: block;
            border: solid #987811;
            border-width: 0 6px 6px 0;
            padding: 10px;
            transform: rotate(135deg);
            width: 0.75rem;
            height: 0.75rem;
            margin-left: 0.25rem;
        }

        .carousel-control-next-icon.custom-carousel-icon::after {
            content: "";
            display: block;
            border: solid #987811;
            border-width: 0 6px 6px 0;
            padding: 10px;
            transform: rotate(-45deg);
            width: 0.75rem;
            height: 0.75rem;
            margin-right: 0.25rem;
        }

    .carousel-control-prev:hover
    .carousel-control-prev-icon.custom-carousel-icon::after,
    .carousel-control-next:hover
    .carousel-control-next-icon.custom-carousel-icon::after {
        border-color: #c7a33f;
    }

    /* CSS for section section:news tiny slider */

.tns-ovh {
    -webkit-mask-image: linear-gradient( to left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 3%, rgba(255, 255, 255, 1) 97%, rgba(255, 255, 255, 0) 100% );
    mask-image: linear-gradient( to left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 3%, rgba(255, 255, 255, 1) 97%, rgba(255, 255, 255, 0) 100% );
    padding-bottom: 20px;
}

    .news-grid-control {
        position: absolute;
        height: 100%;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: -1;
    }

    /* Indicadores do carrossel - estilo dourado */
    .tns-nav {
        text-align: center;
        position: absolute;
        bottom: 90px;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        width: 100%;
        left: 50%;
        z-index: 9;
        margin: 0;
    }

        .tns-nav button {
            background-color: #c7a33f; /* dourado */
            width: 12px;
            height: 12px;
            border-radius: 50%;
            opacity: 0.6;
            transition: all 0.3s ease;
            margin: 0 5px;
            border: none;
        }

            .tns-nav button.tns-nav-active {
                background-color: #c7a33f; /* dourado mais forte */
                opacity: 1;
                transform: scale(1.2);
            }

    .news-grid .row > .col {
        padding-left: 16px;
        padding-right: 16px;
    }

    .news-section .carousel-control-prev,
    .news-section .carousel-control-next {
        top: 50%;
        transform: translateY(-50%);
        opacity: 1 !important;
    }

    .news-section .carousel-control-prev-icon.custom-carousel-icon,
    .news-section .carousel-control-next-icon.custom-carousel-icon {
        background-image: none !important;
        width: 2rem;
        height: 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

        .news-section .carousel-control-prev-icon.custom-carousel-icon::after {
            content: "";
            display: block;
            border: solid #987811;
            border-width: 0 6px 6px 0;
            padding: 10px;
            transform: rotate(135deg);
            width: 0.75rem;
            height: 0.75rem;
            margin-left: 0.25rem;
        }

        .news-section .carousel-control-next-icon.custom-carousel-icon::after {
            content: "";
            display: block;
            border: solid #987811;
            border-width: 0 6px 6px 0;
            padding: 10px;
            transform: rotate(-45deg);
            width: 0.75rem;
            height: 0.75rem;
            margin-right: 0.25rem;
        }

    .news-section .carousel-control-prev:hover
    .carousel-control-prev-icon.custom-carousel-icon::after,
    .news-section .carousel-control-next:hover
    .carousel-control-next-icon.custom-carousel-icon::after {
        border-color: #c7a33f;
    }
    /*======================================
	Agenda Section CSS
========================================*/
    .agenda-section {
        background-color: var(--color-background-grey);
    }

    .agenda-section .agenda-banner carousel carousel-item a{
        width:100%;
    }


    .events-list {
        max-height: 642px;
        overflow-y: auto;   
    }


    .event-item h4 {
        font-family: "Spartan", sans-serif;
        font-weight: 700;
        font-size: 18px;
        line-height: 24px;
        color: var(--color-accent-gold);
    }

    .event-item p {
        font-family: "DM Sans", sans-serif;
        font-size: 15px;
        line-height: 21.6px;
        color: var(--color-text-grey);
    }

    .event-meta {
        font-family: "DM Sans", sans-serif;
        font-size: 16px;
        color: var(--color-text-primary-green);
    }

    .slider-container {
        padding: 2rem 3rem;
        background: #e6e6e6;
        margin: 2rem auto 0 auto;
        overflow: hidden;
        border-radius: 5px;
        position: relative;
    }

    img {
        display: inline-block;
        vertical-align: top;
        max-width: 100%;
    }

    .my-slider {
        display: flex;
        position: relative;
    }

    .slider-item {
        background: grey;
        border-right: 2px solid #333;
        padding: 1.5rem 0.75rem;
        position: relative;
    }

        .slider-item:hover {
            cursor: grab;
        }

        .slider-item:active {
            cursor: grabbing;
        }

    .controls {
        margin: 0;
        padding: 0;
        list-style: none;
        position: absolute;
        left: 0;
        background: #333;
        width: 100%;
        top: 50%;
        transform: translatey(-50%);
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

        .controls:focus {
            outline: none;
        }

        .controls li:hover {
            cursor: pointer;
        }

    .card {
        margin: 0 auto;
        color: #333;
        background: white;
        border-radius: 5px;
        padding-bottom: 0.75rem;
        font-family: "DM Sans", sans-serif;
        overflow: hidden;
        box-shadow: 2px 2px rgba(var(--black), 0.3);
        position: relative;
    }

        .card img {
            margin-bottom: 0.25rem;
        }

    /* CSS for section section:app-banner */
.app-banner-section {
    background-image: radial-gradient( 173.07% 205.27% at 50% 50%, rgba(11, 68, 28, 0.9) 59.13%, rgba(11, 28, 68, 0.9) 100% ), url("../images/banners/banner_app.png");
    background-size: cover;
    background-position: 83% center;
    padding: var(--section-padding) 0;
    color: var(--color-text-light);
}

@media (min-width:994px) {
    .app-banner-section {
        background-image: radial-gradient( 173.07% 205.27% at 50% 50%, rgba(11, 68, 28, 0.8) 59.13%, rgba(11, 28, 68, 0.8) 100% ), url("../images/banners/banner_app.png");
    }
}
    @media (min-width:1400px) {
        .app-banner-section {
            background-image: url("../images/banners/banner_app.png");
        }
    }

    .app-banner-content {
        max-width: 624px;
    }

        .app-banner-content h2 {
            font-family: var(--font-family-title);
            font-weight: 800;
            font-size: 38px;
            line-height: 50px;
            margin: 0 0 8px 0;
            color: var(--color-text-light) !important;
        }

        .app-banner-content p {
            font-family: "DM Sans", sans-serif;
            font-size: 18px;
            line-height: 28px;
            margin: 0;
        }

    .app-download-links {
        padding-top: 28px;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

        .app-download-links p {
            font-family: "Inter", sans-serif;
            font-weight: 700;
            font-size: 16px;
        }

        .app-download-links div {
            display: flex;
            gap: 11px;
        }

        .app-download-links .btn {
            gap: 4px;
        }

            .app-download-links .btn img {
                margin-right: 4px;
            }
    /*======================================
	Banner Acesso à Informação CSS
========================================*/
    .fw-bold2 {
        font-weight: 700 !important;
        color: #ffffff;
    }

    .section-title2 {
        text-align: center;
        margin-bottom: 80px;
        position: relative;
        z-index: 5;
        color: var(--color-primary-green);
        font-family: var(--font-family-title);
        font-weight: 700;
        line-height: 42px;
        text-align: center;
        margin: 0;
    }
    /*======================================
	Footer CSS
========================================*/
.pre-footer-banner {
    background: linear-gradient(90deg, #0d2808 0%, #1c8e2a 100%);
    padding: 47px 0;
    color: var(--color-text-light);
    position: relative;
    z-index: 5;
}

    .pre-footer-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
    }

    @media (max-width: 992px) {
        .pre-footer-container {
            flex-direction: column;
        }
    }

    .pre-footer-title {
        display: flex;
        align-items: center;
        gap: 24px;
    }

        .pre-footer-title h3 {
            font-family: "Spartan", sans-serif;
            font-weight: 700;
            font-size: 20px;
            line-height: 28px;
            margin: 0;
            color: #fff;
        }

    .pre-footer-container p {
        font-family: "DM Sans", sans-serif;
        font-size: 14px;
        line-height: 28px;
        max-width: 490px;
        margin: 0;
    }

    .pre-footer-container .btn {
        padding: 13px 33px;
    }

    .site-footer {
        background-color: #ffffff;
    }

    .img-footer {
        max-width: 100%;
        height: auto;
        display: block;
    }

    .h6-footer {
        font-weight: 600;
        color: #aa7a11;
        margin-bottom: 1.5rem;
    }

        .h6-footer a, .footer-address p, .h6-link {
            font-size: 13px;
        }

    .h6-link {
        color: #aa7a11;
    }

    .strong-footer {
        font-size: 1.1rem;
    }

    .p-footer {
        line-height: 1.2rem;
        font-weight: 300;
    }

    .container-footer {
        color: #aa7a11;
        display: flex;
        justify-content: space-between;
        padding-top: 2rem;
    }

    .footer-middle {
        display: flex;
        justify-content: flex-end;
    }

    .footer-address {
        display: flex;
        gap: 25px;
        width: 44rem;
    }

        .footer-address .img-footer {
            width: 20rem;
        }

    .footer-bottom {
        padding-bottom: 1.5rem;
        margin-top: 1.5rem;
        background-color: #227436;
    }

    .footer-bottom-grid {
        color: white;
    }

    .footer-buttons {
        margin-top: 1rem;
    }

    .li-style {
        font-weight: 600;
        list-style: inherit;
        margin-top: 0.5rem;
        padding-left: 2rem;
    }

    .li-footer {
        font-weight: 600;
        margin-bottom: 5px;
        font-size: 13px;
        font-family: var(--font-family-body-text);
    }

    .social-links {
        display: flex;
        justify-content: space-between;
        width: 25rem;
    }
    /* Botões */
    .btn-footer {
        display: inline-flex;
        gap: 0.5rem;
        font-family: var(--font-family-body-text);
        font-size: 16px;
        font-weight: bold;
        padding: 13px 20px;
        border-radius: 100px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

        .btn-footer:hover {
            background-color: var(--color-accent-gold);
            color: var(--color-text-light);
        }

        .btn-footer .img-footer {
            width: 1.4rem;
        }

        .btn-footer:hover .img-footer {
            filter: brightness(0) invert(1);
        }

    .footer-app-links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

        .footer-app-links p {
            font-size: 17px;
            font-weight: bold;
            margin-bottom: 6px;
        }

    .span-footer {
        margin-left: 1rem;
    }
    /* Tablet / telas até 1410px */
    @media (max-width: 1410px) {
        .container-footer {
            padding: 2rem 4rem 0 4rem; /* reduz lateral para não esmagar */
        }

        .footer-address {
            width: 32rem; /* menor que desktop, mas ainda confortável */
        }

        .social-links {
            width: 20rem; /* mantém ícones centralizados */
        }

        .footer-bottom .img-footer {
            max-width: 16rem; /* logo menor */
        }

        .footer-links-grid {
            gap: 1.5rem; /* espaço entre colunas */
        }
    }
    /* Responsividade para telas menores que 992px */
    @media (max-width: 992px) {
        .container-footer {
            flex-direction: column;
            align-items: center;
            padding: 2rem 2rem 0 2rem; /* menos padding nas laterais */
        }

        .footer-links-grid {
            flex-direction: column;
            gap: 2rem;
            width: 100%;
        }

        .footer-column {
            width: 100%;
        }

        .footer-middle {
            justify-content: center;
            margin-top: 1rem;
        }

        .social-links {
            flex-wrap: wrap;
            justify-content: center;
            width: 100%;
            gap: 1rem;
            margin-top: 1rem;
        }

        .footer-bottom-grid {
            flex-direction: column;
            text-align: center;
            gap: 2rem;
        }

        .footer-address {
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            width: 100%;
        }

            .footer-address .img-footer {
                width: 100%;
                max-width: 200px;
            }

        .footer-app-links {
            align-items: center;
            margin-top: 1rem;
        }

            .footer-app-links .footer-buttons {
                flex-direction: column;
                align-items: center;
                gap: 1rem;
            }

            .footer-app-links p {
                text-align: center;
            }
    }

    @media (min-width: 992px) {
        .collapse.dont-collapse-sm {
            display: block;
            height: auto !important;
            visibility: visible;
        }
    }

    .site-footer .footer-column .h6-footer::after {
        opacity: 0;
        visibility: hidden;
    }

    .site-footer .footer-column .h6-footer::after {
        display: inline-block;
        content: "";
        background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='rgb(152,120,17)' class='bi bi-caret-down-fill' viewBox='0 0 16 16'> <path d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/> </svg>");
        background-repeat: no-repeat;
        background-size: 1rem 1rem;
        background-position: center center;
        right: 17px;
        font-size: 10px;
        -webkit-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s;
        height: 1rem;
        width: 1rem;
        color: var(--color-accent-gold);
        position: absolute;
    }

    @media only screen and (min-width: 992px) and (max-width: 1199px) {
        .site-footer .footer-column .h6-footer::after {
            right: 13px;
        }
    }

    @media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
        .site-footer .footer-column .h6-footer.collapsed::after {
            -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
        }
    }

    @media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
        .site-footer .footer-column .h6-footer::after {
            -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
            opacity: 1;
            visibility: visible;
        }
    }
    /*======================================
	Publicações CSS
========================================*/
    .publications-section-image {
        padding-right: 40px;
        width: 100%;
        height: 600px;
        object-fit: cover;
    }

    @media (max-width: 992px) {
        .publications-section-image {
            height: 258px;
            margin-bottom: 2rem;
        }
    }






