:root {
  --primary: #00a05c;
  --primary-dark: #007949;
  --primary-light: #41b86f;

  --accent-primary: #a3bd88;
  --neutral-light: #f5f5f5;
  --neutral-dark: #777777;
}

/* Reset */

body {
  font-family: "Source Sans Pro", sans-serif;
}

b,
strong {
  font-weight: 600;
}

/* Utility classes */

.w-100 {
  width: 100%;
}

.square-ratio {
  aspect-ratio: 1;
}

.video-ratio {
  aspect-ratio: 16 / 9;
}

.image-ratio {
  aspect-ratio: 1.5;
}

.object-cover {
  object-fit: cover;
}

.object-contain {
  object-fit: contain;
}

.object-fill {
  object-fit: fill;
}

.text-justify {
  text-align: justify;
}

.w-max-content {
  width: max-content;
}

/* Layout Components */

.page-title {
  margin-block: 0 3.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #eaeaea;

  font-size: clamp(2.5rem, 1rem + 2.5vw, 3.5rem);
  font-weight: 600;
  color: var(--neutral-dark);
}

.multi-columns-card-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(172px, 1fr));
  gap: 1rem;
}

/* Components */

.big-button-list {
  font-size: 16px;

  padding-block: 1em;
}

.big-button-list a {
  display: block;
  margin-block: 0.5em;
  padding: 1em;

  border-radius: 0.6rem;

  font-size: 1em;
  font-weight: bold;
  color: white;
  text-shadow: 0 0 0.3rem hsl(0 0% 0% / 0.5);

  background-color: var(--primary);

  transition: background-color 200ms ease;
}

.big-button-list a:hover {
  color: white;
  background-color: var(--primary-dark);
}

.form-default {
  accent-color: var(--primary);
}

.form-default :is(label, input, select, textarea) {
  display: inline-block;

  width: 100%;
}

.form-default :is(input, select, textarea) {
  padding: 0.5rem 0.8rem;
  margin-bottom: 1rem;
  border: 1px solid lightgray;
  border-radius: 0.325rem;

  box-shadow: inset 0 0 0.1rem hsl(0 0% 0% / 0.15);
  background-color: white;
}

.form-default
  input:is([type="radio"], [type="checkbox"], [type="range"], [type="file"]) {
  display: inline-block;
  border: none;
  box-shadow: none;
}

.icon-card {
  display: grid;
  place-items: center;
  gap: 2rem;

  min-height: 200px;
  padding: 2.5rem 1.5rem;

  text-align: center;
  color: #a3a3a3;

  --bg: rgb(237, 237, 237);
  --bg-dark: rgba(219, 219, 219, 1);

  background-color: var(--bg);
  background-image: -o-radial-gradient(
    center,
    ellipse cover,
    var(--bg),
    var(--bg-dark)
  );
  background-image: -ms-radial-gradient(
    center,
    ellipse cover,
    var(--bg),
    var(--bg-dark)
  );
  background-image: -moz-radial-gradient(
    center,
    ellipse cover,
    var(--bg),
    var(--bg-dark)
  );
  background-image: -webkit-radial-gradient(
    center,
    ellipse cover,
    var(--bg),
    var(--bg-dark)
  );
  background-image: radial-gradient(
    ellipse at center,
    var(--bg),
    var(--bg-dark)
  );

  -webkit-transition: color 100ms linear;
  -moz-transition: color 100ms linear;
  -o-transition: color 100ms linear;
  transition: color 100ms linear;
}

.icon-card:hover {
  --bg: rgb(232, 232, 234);
  --bg-dark: rgba(216, 232, 232, 0.8);

  color: var(--primary);
}

.icon-card img {
  filter: grayscale(1);
}

.icon-card:hover img {
  filter: grayscale(0);
}

.icon-card svg {
  width: 50px;
  aspect-ratio: 1;
}

.icon-card h3 {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
}

.button,
.button-accent {
  --color: white;
  --bg: var(--primary);

  display: flex;

  margin-block: 1rem;
  padding: 1rem;
  border: 0;
  border-radius: 0.25rem;

  font-weight: 700;
  color: var(--color);
  font-size: 16px;
  text-shadow: 0 0 1rem hsl(0 0% 0% / 0.25);

  background-color: var(--bg, #00a05c);
  cursor: pointer !important;

  transition: background-color 300ms;
}

.button:hover,
.button-accent:hover {
  --color: white;
  --bg: var(--primary-light);

  color: var(--color);
  background-color: var(--bg, #469765);
}

.file-list-group-container {
  font-size: 16px;
}

.file-list-group-container ul {
  padding: 0;

  list-style: none;
}

.file-list-group-container > ul {
  padding-block: 1rem;
}

.file-list-group > li {
  padding: 1em 0.5em;
}

.file-list-group > li {
  margin-bottom: 1em;
  border-top: 1px solid #cccccc;
}

.file-list-group li + li {
  border-top: 1px solid #cccccc;
}

.file-list-group .title {
  font-size: 1.1em;
  color: #525252;
  font-weight: bold;
}

.file-list-group time {
  display: block;
  margin-bottom: 0.1em;

  font-size: 0.9em;
}

.file-list-group p {
  margin-bottom: 2em;
}

.file-list-group .file-list {
  border: 1px solid #cccccc;
}

.file-list-group .file-list li {
  background-color: var(--neutral-light);
}

.file-list-group .file-list li :is(a, span) {
  display: flex;
  align-items: center;
}

.file-list-group .file-list li a {
  padding: 0.5em;
}

.file-list-group .file-list li a > span {
  width: 100%;
}

.file-list-group .file-list li a > span:last-child {
  display: flex;
  gap: 0.5em;

  max-width: 110px;
}

.file-list-group .file-list li a svg {
  width: 30px;
  aspect-ratio: 1;
}

.date-filter {
  padding-block: 3rem 1rem;
}

.date-filter .year-options {
  width: min(100%, 190px);
  padding: 0.5rem;
  border: 1px solid #90909e;
  border-radius: 0.5rem;

  background-color: #e9e9ed;
}

.year-list {
  padding-block: 1rem;
}

.year-list select {
  padding: 0.5rem 1rem;
  border: 1px solid gray;
  border-radius: 0;

  background-color: var(--neutral-light);
}

/* Styles */

.hidden-ancora,
span.hidden-ancora {
  height: 0px;
  float: left;
  width: 0px;
  text-indent: -9999px;
  display: inline-block;
  margin-top: -59px;
  font-size: 0;
}

.justify {
  text-align: justify;
}

.tooltip {
  top: initial !important;
}

.relative {
  position: relative;
}

:is(.gallery, .gallery2, .gallery3) a:hover img {
  cursor: zoom-in;
}

a:hover,
a:focus,
a {
  color: inherit;
  text-decoration: none;
}

.breadcrumb > li + li:before {
  display: none;
}


.breadcrumb svg{
  height: 8px;
  aspect-ratio: 1;
}

.text1 {
  vertical-align: top;
  display: inline-block;
}

.transition {
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.listagem_perguntas {
  margin: 20px 0;
}

.listagem_perguntas p {
  margin-bottom: 0;

  transition: all 300ms ease;
}

.listagem_perguntas *[aria-expanded="true"] > p {
  color: #00a05c;
}

.listagem_perguntas .botao_perguntas {
  display: block;
  width: 100%;
  background-color: #f2f2f2;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  padding: 15px 0 15px 25px;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.listagem_perguntas :is(.collapsed, use) {
  margin-bottom: 10px;
  color: #535353;
  background-color: #eeeeee;
}

.listagem_perguntas .well {
  min-height: 60px;
  padding: 20px;
  margin-bottom: 10px;
  background-color: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 0;
}

.listagem_perguntas h2 {
  font-size: 25px;
}

.listagem_perguntas h3 {
  font-size: 20px;
}

.alvaras-content a {
  color: #337ab7;
}

.alvaras-content a:hover {
  text-decoration: underline;
}

.job-opportunity-form .radio-options {
  padding-block: 2rem;
}

.job-opportunity-form .radio-options :is(input, label) {
  width: max-content;
}

.job-opportunity-form label + input[type="radio"] {
  margin-left: 1rem;
}

.job-opportunity-form .button {
  margin-left: auto;
}

.texto-link a {
  color: #337ab7 !important;
}
.texto-link a:hover {
  text-decoration: underline !important;
}
.well p {
  font-size: 14px;
  color: #727272;
  margin-bottom: 10px;
}
.well p:hover {
  text-decoration: underline;
}

.botao_perguntas svg {
  height: 10px;
  width: 15px;
  color: #fff;
  display: inline-block;
  float: right;
  margin-top: 5px;
  margin-right: 20px;
  vertical-align: middle;
}
.botao_perguntas.collapsed svg {
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.secao .texto_principal .botao_perguntas p {
  color: #c63234;
}
.secao .texto_principal .collapsed p {
  color: #535353;
}
.titulo_sec_secretarias {
  color: var(--neutral-dark);
  font-size: 25px;
  margin-top: 0;
  font-weight: bold;
  margin-bottom: 25px;
}
.border_wpad {
  border: 1px solid #d4d4d4;
  padding: 10px;
}
.text1 :is(p, a) {
  margin-top: 12px;
  font-size: 12px;
  color: rgb(94, 126, 90);
  margin-bottom: 12px;
  display: inline-block;
}
.text1 a {
  padding-right: 12px;
}
.breadcrumb .active {
  color: inherit;
}
.breadcrumb a {
  color: inherit;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.mapa_do_site .listagem {
  color: #85796c;
  font-size: 15px;
}
.mapa_do_site .listagem ul {
  list-style-type: none;
  margin: 0 0 20px 0;
  padding: 0;
}
.mapa_do_site .item {
  font-weight: bold;
}
.mapa_do_site .listagem ul li {
  padding-left: 30px;
}
.mapa_do_site .listagem :is(a, span) {
  color: var(--neutral-dark);
}
.mapa_do_site .listagem a:hover {
  text-decoration: underline;
}
.breadcrumb {
  background-color: transparent;
  padding-left: 0;
  padding-top: 0;
  margin-bottom: 0;
  font-size: 13px;
  color: #878787;
}
.navbar {
  margin: 0;
  border: none;
}
.clr:after {
  content: " ";
  clear: both;
  display: block;
}
.logo_xs_cab img {
  height: 50px;
  margin: 15px;
}
.inline_middle {
  display: inline-block;
  vertical-align: middle;
}
.cabecalho {
  background-color: #ffffff;
  position: relative;
  margin-bottom: 15px;
  padding-bottom: 1px;
}
.cab_index .cabecalho {
  margin-bottom: 3px;
}
.background_fluid {
  background-color: #00a05c;
}
.modal-backdrop.in {
  background-color: #133928ad;
  opacity: 1;
}
.mapa_site_cab svg {
  color: #868688;
  width: 35px;
  height: 40px;
}
.mapa_site_cab span,
span.atalho {
  color: #868688;
}

.mapa_site_cab {
  margin-right: 5px;
}

.mapa_site_cab a {
  color: #868688;
  font-size: 14px;
}

.underline_cab {
  background-color: #d6d7d8;
  height: 1px;
}

.border_ca {
  border: 1px solid #cacaca;
}

#navbar {
  padding: 0;
  text-align: center;
}

.navbar-nav > li > a {
  font-size: 19px;
  color: #fff;
  font-weight: 400;
  padding: 25px 27px;
}

.dropdown-menu > li > a:is(:hover, :focus) {
  color: #fff;
  text-decoration: underline;
  background-color: inherit;
}

.dropdown-menu > li > a {
  padding: 3px 0;
  margin: 0 15px;
  border-bottom: 1px solid #005030;
  font-size: 15px;
  color: #fff;
}

.navbar-nav > li > .dropdown-menu {
  border: none;
}

.navbar-toggle .icon-bar {
  background: #fff;
  width: 22px;
  height: 4px;
  border-radius: 3px;
}

.navbar-toggle {
  background-color: #b6b8ba;
  border: #b6b8ba;
}

.navbar-header .button_collapse {
  float: right;
  margin-top: 11px;
}

#navbar ul li {
  text-align: right;
}

.sup_cab {
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.85);
  margin-top: 20px;
  margin-bottom: 10px;
}

.bgcolor_green1 {
  background-color: #a3b19e;
}

.bgcolor_green2 {
  background-color: #e0e2dd;
  width: 100%;
  top: 0;
  border-bottom: 1px solid #6b9469;
}

.pesquisa_cabecalho {
  text-align: left;
  max-width: 400px;
  margin-left: auto;
}

.pesquisa_cabecalho input {
  width: calc(100% - 42px);
  height: 50px;
  padding-left: 10px;
  border: 1px solid #bdbfc1;
}

.enfeite_cab img {
  margin: 17px 0 0 20px;
  height: 115px;
  -ms-interpolation-mode: bicubic;
}

.pesquisa_cabecalho svg {
  color: #ffffff;
  height: 20px;
  width: 100%;
}

.logo_e_search > .row {
  display: flex;
  align-items: center;
}

.logo_e_search .logo_cab {
  margin: 15px 0;
  max-height: 115px;
  -ms-interpolation-mode: bicubic;
}

.contents_svg_top {
  height: 40px;
  width: 40px;
  display: inline-block;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.contents_svg_top svg,
.acessibilidade svg {
  color: #868688;
  padding: 11px;
  height: 40px;
  width: 40px;
  display: inline-block;
  vertical-align: middle;
}

#div-meteorologia {
  margin-top: 3px;
  margin-bottom: 3px;
}

#div-meteorologia .left-temp {
  text-align: right;
  width: 40%;
  float: left;
}

#div-meteorologia .right-side {
  width: 60%;
  float: left;
  padding-left: 25px;
}

#div-meteorologia .chamada_tempo {
  font-size: 18px;
  color: #919191;
}

#div-meteorologia svg.ico-display {
  display: inline-block;
  vertical-align: middle;
}

#div-meteorologia .span-valor {
  display: inline-block;
  font-size: 30px;
  color: #858587;
  vertical-align: middle;
  font-weight: bold;
}

.m-r-divs div {
  float: left;
  margin-left: 1px;
}
.m-r-divs {
  float: right;
}
.edit_font svg {
  padding-left: 5px;
  padding-right: 5px;
}
.acessibilidade {
  display: inline-block;
  max-height: 40px;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.acessibilidade:hover,
.hover_svg1:hover .contents_svg_top,
.contents_svg_top:hover {
  cursor: pointer;
}
.text1 p:hover {
  cursor: default;
}
.acessibilidade span {
  font-size: 14px;
  color: #868688;
  display: inline-block;
  margin: 0 10px;
  margin-left: -5px;
  vertical-align: middle;
}
.contraste {
  background-color: #a3b19e;
}
.selos .selo {
  margin-top: 8px;
  padding: 0 !important;
}
.cabecalho .nav > li > a:hover,
.cabecalho .nav .open > a,
.cabecalho .nav .open > a:hover,
.cabecalho .nav .open > a:focus {
  text-decoration: none;
  background-color: #007949 !important;
}
.cabecalho .nav > li > a:focus {
  background-color: #007949;
}
.noticias_principais_content .tab-pane {
  background-color: #ebebe7;
  padding: 20px;
}
.noticias_principais_nav {
  background-color: #ebebe7;
}

.descricao_noticia span.data {
  display: block;
  color: #857b6e;
  font-size: 14px;
  line-height: 120%;
}
.descricao_noticia span.sec {
  display: block;
  color: #aca599;
  font-size: 14px;
  line-height: 120%;
}
.descricao_noticia h2 {
  color: #bf3117;
  font-size: 20px;
  font-weight: 600;
}
.descricao_noticia h3 {
  color: #867c6f;
  font-size: 15px;
  padding-bottom: 50px;
}
.descricao_noticia a.todas_noticias {
  padding: 10px 25px;
  border: 1px solid #867c6f;
  color: #867c6f;
  position: absolute;
  right: 20px;
  bottom: 20px;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.descricao_noticia a.todas_noticias:hover {
  border: 1px solid #bf3117;
  color: #ffffff;
  background-color: #bf3117;
}
.noticias_principais_content {
  position: relative;
}

.descricao_noticia {
  width: 44%;
  display: inline-block;
  vertical-align: top;
}
.foto_noticia {
  width: 53%;
  margin-right: 2%;
  display: inline-block;
  vertical-align: top;
}
.tabs_noticias_index {
  background-color: #d8d8cf;
  color: #fff;
  padding-top: 10px;
}
.tabs_noticias_index li {
  float: none;
  margin-bottom: -1px;
  margin: 0;
  padding: 0;
}
.tabs_noticias_index li > a {
  margin-right: 0;
  line-height: 120%;
  border: none;
  border-radius: 0;
  color: #85796c;
  padding-top: 10px;
}
.tabs_noticias_index li > a span {
  font-size: 14px;
  color: inherit;
  display: block;
}
.tabs_noticias_index li > a p {
  font-size: 15px;
  color: inherit;
  margin-bottom: 0;
  font-weight: 600;
}
.conselhos .consulte {
  text-align: center;
  margin-bottom: 15px;
}
.conselhos .consulte button,
.conselhos .consulte a {
  border: none;
  outline: none;
  background: #d5ddd2;
  color: #272727;
  font-weight: bold;
  padding: 20px 15px;
  line-height: 18px;
}

.cards-container > :is(p, div) {
  padding-inline: 1rem;
}

.council-card,
.council-card-itself-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;

  min-height: 110px;
  margin: 1em 0;
  padding: 10px;
  border: 1px solid #c4c4c4;

  color: #272727;

  transition: all 0.3s ease;
}

:is(.council-card, .council-card-itself-content) :is(h3, p) {
  width: 100% !important;
  margin: 0;

  font-size: 14px;
  color: inherit;
  text-align: center;
}

:is(.council-card, .council-card-itself-content) h3 {
  text-transform: uppercase;
}

.council-card:hover {
  background: #009f5c;
  color: #fff;
}

.collapse-buttons-container > div {
  margin: 1rem 0;
}

.collapse-buttons-container .colapse-button {
  display: flex;
  align-items: center;
  justify-content: center;

  height: 8rem;
  padding: 2rem;

  border: 1px solid black;

  text-align: center;
}

.collapse-buttons-container .colapse-button h2 {
  margin: 0;
  font-size: 14px;
}

.modal-dialog-centered {
  min-height: calc(100vh - 7rem);
  display: flex;
  align-items: center;
}
.modal-dialog-centered .modal-content {
  width: 100%;
}
.conselhos .modal .modal-header {
  background: #f5f5f5;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.conselhos .modal .modal-header h2 {
  font-weight: bold;
  font-size: 20px;
}
.conselhos .modal .modal-header .close {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.conselhos .modal .form-group {
  max-width: 400px;
  margin: 10px auto;
}
.conselhos .modal .submit {
  padding: 10px 20px;
  background: #009f5c;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  border: none;
  outline: none;
  display: block;
  width: max-content;
  margin: 15px auto 30px;
}
.conselhos .modal .submit svg {
  height: 20px;
  width: 20px;
  color: inherit;
  vertical-align: middle;
}
.conselhos .modal .resultado {
  padding: 0 40px;
}
.conselhos .modal .resultado p {
  font-size: 15px;
}
.conselhos .modal .resultado strong {
  font-weight: bold !important;
  font-size: 140%;
}
.conselhos .modal .resultado ul {
  padding-left: 10px;
  list-style-type: none;
}
.conselhos .modal .resultado ul li {
  text-indent: -5px;
}
.conselhos .modal .resultado ul li::before {
  content: "- ";
  text-indent: -5px;
}
.conselhos .modal .resultado .exportar {
  font-size: 13px;
  padding: 5px 10px;
  background: #e4e1e1;
  color: #272727;
  margin-left: auto;
  display: block;
  width: max-content;
}
.conselhos .title-int {
  font-size: 22px;
  font-weight: bold;
  color: #777;
  margin-top: 10px;
}
.conselhos .modal .resultado .exportar svg {
  height: 14px;
  vertical-align: middle;
  width: 14px;
  color: #272727;
}
.conselho-int form legend {
  padding: 5px;
  text-align: center;
  font-weight: bold;
  color: #272727;
  background-color: #f5f5f5;
  font-size: 18px;
}
.conselho-int form .buttons {
  text-align: right;
}
.conselho-int form .buttons button {
  background-color: #00a05c;
  color: #fff;
  padding: 10px 20px;
  border: none;
  font-weight: bold;
}
.subtitle {
  display: block;
  border-bottom: 2px solid #c1ccb0;
}
.subtitle h2 {
  font-size: 25px;
  font-weight: 600;
  color: #738655;
  margin: 0;
  padding: 0 8px 8px 8px;
}
.subtitle h2 a {
  font-size: 14px;
  font-weight: 300;
  color: #cec49b;
}
.agenda_eventos ul,
#acesso_rapido_smxs ul,
ul.servicos_e_atividades_index {
  list-style-type: none;
  margin: 0;
  padding: 10px 0;
}
.agenda_eventos ul li:hover {
  background-color: #ebebe7;
}
.agenda_eventos ul a {
  color: #797064;
  font-size: 16px;
  font-weight: 600;
}
.agenda_eventos ul li:hover .data span {
  background-color: #bf3117;
}
.agenda_eventos .data {
  width: 90px;
}
.agenda_eventos .nome_evento {
  width: calc(100% - 100px);
}
.descricao_album h2 {
  font-size: 20px;
  font-weight: 600;
  color: #797064;
  margin-top: 5px;
}
.descricao_album h3 {
  font-size: 16px;
  color: #857b6e;
  margin-top: 15px;
}
.descricao_album span.data {
  font-size: 14px;
  color: #867c6f;
  margin-top: 10px;
  display: block;
}
.qnt_fotos {
  position: relative;
  min-height: 45px;
  margin-top: 20px;
}
.qnt_fotos a.todas_noticias {
  padding: 10px 25px;
  border: 1px solid #867c6f;
  color: #867c6f;
  position: absolute;
  right: 15px;
  bottom: 0;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.qnt_fotos .fotos svg {
  height: 33px;
  width: 40px;
  margin-right: 5px;
  color: #797064;
  margin-top: 8px;
}
.atrativos_turisticos .qnt_fotos .fotos svg {
  width: 30px;
  height: 25px;
  color: #999999;
}
.qnt_fotos .fotos span {
  margin-top: 8px;
  color: #797064;
  font-size: 18px;
  font-weight: 600;
}
.atrativos_turisticos .qnt_fotos .fotos span {
  margin-top: 10px;
  color: #999999;
  font-size: 14px;
  font-weight: 600;
}
.carousel_noticias .owl-prev {
  display: inline-block;
  margin-left: calc(50% - 35px);
  float: left;
}
.carousel_noticias .owl-next {
  display: inline-block;
  margin-right: calc(50% - 35px);
  float: right;
}
.video iframe {
  border: 10px solid #ebebe7;
  margin-bottom: 10px;
}
.listagem_videos {
  color: var(--neutral-dark);
}
.listagem_videos span {
  display: block;
  margin-bottom: 10px;
}

.follow-button {
  display: flex;
  align-items: center;
  justify-content: center;

  width: max-content;
  max-width: 100%;
  min-width: 3rem;
  min-height: max-content;
  padding: 5px 15px;
  border: 1px solid #00a05c;

  color: #00a05c !important;
  text-align: center;

  outline: none;
  background-color: transparent;

  transition: background-color 0.2s ease, color 0.2s ease;
}

.follow-button:hover {
  color: #fff !important;

  background: #00a05c;
}

.acesso-senha {
  display: flex;
}

.acesso-senha .follow-button {
  margin: 1rem;
}

.listagem_videos .info p {
  text-align: center;
  color: #00a05c;
}
.listagem_videos .info {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.videos .content_video {
  margin-bottom: 50px;
}
.listagem_videos h2 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 23px;
}

.anexos a {
  color: #737373;
  line-height: 30px;
}

.anexos span {
  color: #737373;
}

.anexos .titulo_anexos {
  display: block;
  text-align: center;
  margin: 15px 0;
  color: #919191;
}

.anexos .divdownload {
  width: calc(100% - 115px);
  display: inline-block;
}

.anexos ul,
.multiple-attachments {
  background-color: #f5f5f5;
  list-style-type: none;
  padding: 0;
  margin: 0;
  border: 1px solid #eaeaea;
  margin-top: 30px;
}

.anexos ul li {
  min-height: 60px;
  padding: 15px;
  border-top: 1px solid #eaeaea;
}

.anexos.downloads {
  margin-bottom: 60px;
}

.anexos.downloads ul li {
  height: auto;
}

.anexos.downloads a.tit_download_anexo {
  font-size: 16px;
}

.anexos svg {
  height: 30px;
  width: 30px;
  color: #d3d6cf;
  display: inline-block;
  vertical-align: middle;
}

.anexos svg:hover {
  color: #83957b;
}

.multiple-attachments {
  color: #525252;

  background-color: #f5f5f5;
}

.multiple-attachments li {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0.5em;
}

.multiple-attachments li + li {
  border-top: 1px solid #eaeaea;
}

.multiple-attachments .attachment-name {
  font-weight: bold;
  text-transform: uppercase;
}

.multiple-attachments li .download {
  display: flex;
  align-items: center;
  gap: 0.5em;

  height: max-content;
}

.multiple-attachments li .download a {
  display: block;

  height: 2em;
}

.multiple-attachments svg {
  width: 2em;
  aspect-ratio: 1;
}

.fotos_servicos .img_anexo {
  margin-bottom: 10px;
  margin-top: 10px;
}
.rodape1 {
  margin-top: 50px;
  padding: 15px;
  background-color: #00a05c;
}
.rodape1 span {
  color: #fff;
}
.rodape1 svg {
  color: #ffffff;
  height: 30px;
  width: 30px;
  margin-right: 10px;
  display: inline-block;
  vertical-align: middle;
}
.rodape2 {
  padding-top: 15px;
  padding-bottom: 15px;
  font-weight: 300;
  position: relative;
}
.rodape2 .container {
  position: relative;
}
.rodape2 .fone {
  margin-bottom: 15px;
}
.rodape2 span {
  color: #858587;
  font-size: 17px;
  line-height: 120%;
}
.rodape2 a {
  color: inherit;
}
.rodape2 img {
  height: 90px;
  padding-top: 15px;
}
.rodape2 .redes_sociais a {
  display: inline-block;
}
.rodape2 .redes_sociais svg {
  height: 30px;
  width: 30px;
  color: #00a05c;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  margin-left: 5px;
}
.rodape2 .redes_sociais svg:hover {
  color: #0d5935;
}
.rodape3 {
  padding: 15px 0;
  border-top: 1px solid #d6d7d8;
}
.rodape3 span {
  width: calc(100% - 75px);
  font-size: 13px;
  color: #858586;
  display: inline-block;
  vertical-align: middle;
}
.tooltip-button {
  border-radius: 50px;
  background: #808080;
  color: #000;
  font-size: 10px;
  border: none;
  outline: none;
}
#map {
  width: 100%;
  height: 280px;
}
.lg_underline {
  border-bottom: 14px solid #eaeaea;
}

.titulo {
  border-bottom: 2px solid #eaeaea;
  margin-bottom: 40px;
}
.titulo h1 {
  margin-block: 0 5px;
  padding: 0;

  font-size: 3.5rem;
  font-weight: 600;
  color: var(--neutral-dark);
}

.secao .texto_principal p {
  font-size: 15px;
  color: #85796c;
}
.secao .video {
  max-width: 440px;
  padding: 0;
  margin-left: 50px;
}
.menu_dir .item_menu {
  background-color: #eeeeee;
  width: 100%;
  max-width: 250px;
  float: right;
  padding: 10px;
  position: relative;
  margin-bottom: 40px;
}

.menu_dir .item_menu:after {
  height: 1px;
  content: " ";
  bottom: 0;
  z-index: -1;
  display: block;
  position: absolute;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.4);
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.4);
}
.menu_dir .item_menu:before {
  height: 1px;
  content: " ";
  top: 0;
  z-index: -1;
  display: block;
  position: absolute;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-shadow: 0 -2px 12px 0 rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0 -2px 12px 0 rgba(0, 0, 0, 0.4);
  box-shadow: 0 -2px 12px 0 rgba(0, 0, 0, 0.4);
}
.menu_dir .item_menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu_dir .item_menu ul li a {
  padding: 10px;
  display: block;
  -webkit-transition: all 0.1s linear;
  -moz-transition: all 0.1s linear;
  -o-transition: all 0.1s linear;
  transition: all 0.1s linear;
}
.menu_dir .item_menu ul li a:hover {
  text-decoration: underline;
}
.menu_dir .item_menu ul li a {
  font-size: 14px;
  color: var(--neutral-dark);
}
.title_menu_dir {
  background: #d5dcd1;
  margin: 1px 0;
}
.title_menu_dir span {
  color: #456346;
  font-size: 18px;
  line-height: 100%;
}
.border_title {
  border-top: 1px solid #d5dcd1;
  border-bottom: 1px solid #d5dcd1;
  margin-bottom: 10px;
}
.title_menu_dir svg {
  width: 25px;
  height: 25px;
  color: #456348;
  display: inline-block;
  vertical-align: middle;
  margin: 10px 5px 10px 10px;
}
.secao hr {
  margin-top: 40px;
  margin-bottom: 50px;
  border-top: 1px solid #999999;
}
.noticias_int hr {
  border-top-color: #d4d4d4;
}
.galeria_secao {
  margin-bottom: 40px;
}
.secao .anexos {
  margin-bottom: 100px;
}
.galeria_secao img {
  margin-bottom: 30px;
}
.secao .galeria_secao .imagem_secao img {
  border: 1px solid #cacaca;
  max-width: 272px;
}

.links_acessibilidade a {
  display: inline-block;
  float: left;
}

.links_acessibilidade a:hover span,
.links_acessibilidade a:hover svg {
  color: #00a05c;
}

.selos a:hover {
  cursor: pointer;
}
.selos .modal-dialog {
  width: 100%;
  max-width: 970px;
  margin-left: auto;
  margin-right: auto;
}
.selos .modal-body {
  padding: 60px 40px 80px 40px;
}
.selos .modal-content {
  border-radius: 20px;
  -webkit-box-shadow: 0 0 21px -1px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0 0 21px -1px rgba(0, 0, 0, 0.75);
  box-shadow: 0 0 21px -1px rgba(0, 0, 0, 0.75);
}
.selos .close {
  position: absolute;
  right: 25px;
  top: 25px;
  z-index: 99999;
  font-size: 35px;
  font-weight: bold;
  opacity: 0.5;
}
.selos .modal-body h2 {
  margin-top: 0;
  font-size: 18px;
  color: #444444;
  font-weight: bold;
  margin-bottom: 30px;
}
.selos .modal-body p {
  font-size: 15px;
  color: #444444;
  line-height: 160%;
  padding-right: 30px;
  margin-bottom: 30px;
}
.listagem_noticias .noticia {
  margin-bottom: 65px;
}
.noticia .line {
  width: 1px;
  display: block;
  background-color: #aaaaaa;
  height: 185px;
  padding: 0;
  margin: 0 20px;
}
.noticia span.data {
  font-size: 14px;
  display: block;
  margin-bottom: 5px;
}
.noticia span.tag,
.noticias_int span.tag {
  font-size: 14px;
  color: #6d6d6d;
  background-color: #e1e1e1;
  padding: 5px 35px;
  display: inline-block;
}
.noticia h2 {
  font-size: 20px;
  color: #858585;
  display: block;
  font-weight: 600;
  margin-top: 15px;
}
.eventos .noticia h2 {
  margin-bottom: 30px;
}
.eventos .noticia .line {
  height: 200px;
}
.eventos .noticia .detalhes {
  margin-top: 20px;
}
.eventos .noticia .detalhes p {
  color: #999;
}
.eventos .noticia span.data {
  font-size: 14px;
}
.noticia p {
  font-size: 15px;
  display: block;
  margin-bottom: 18px;
}
.ver_noticia {
  font-size: 13px;
  background-color: transparent;
  border: 1px solid #85796c;
  padding: 5px 35px;
  display: inline-block;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.ver_noticia:hover {
  color: #999999;
  background-color: #efefef;
  border: 1px solid #999999;
}
.noticia_int_infos .main_image {
  margin-bottom: 30px;
}
.noticia_int_infos .compartilhe {
  padding: 20px;
  margin-top: 10px;
  background-color: #e8e8e8;
  text-align: right;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.noticia_int_infos .compartilhe span {
  font-size: 15px;
  color: #797064;
  line-height: 100%;
  margin-right: 5px;
}
.noticia_int_infos .compartilhe svg {
  height: 34px;
  width: 34px;
  color: #bbbbbb;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  vertical-align: middle;
}
.noticia_int_infos .compartilhe svg:hover {
  color: #80b47e;
  cursor: pointer;
}
.noticia_int_infos span.data,
.noticia_int_infos h2,
.noticia_int_infos p,
.noticia_int_infos span.fonte,
.noticia a.ver_noticia,
.noticia p,
.noticia span.data {
  color: #999999;
}
.noticia_int_infos span.data {
  font-size: 16px;
  display: block;
  line-height: 100%;
}
.noticia_int_infos h2 {
  font-size: 30px;
}
.noticia_int_infos p {
  font-size: 15px;
}
.noticia_int_infos span.fonte {
  font-size: 14px;
}
.fotos_noticia {
  margin-top: 60px;
}
.fotos_noticia a {
  margin-bottom: 30px;
}
.outras_noticias {
  margin-bottom: 40px;
}
.outras_noticias .title_menu_dir {
  padding: 0;
  background-color: transparent;
}
.outras_noticias .title_menu_dir span {
  font-size: 25px;
  font-weight: 600;
}
.outras_noticias .title_menu_dir svg {
  width: 30px;
  height: 30px;
  margin: 0;
  margin-right: 5px;
}
.noticias_int .noticia span.data {
  margin-bottom: 0;
}
.acesso_rapido_smxs {
  border: 1px solid #dddddd;
  margin-bottom: 15px;
}
.acesso_rapido_smxs a {
  display: block;
  padding: 5px 15px;
  color: #a3b19e;
  font-size: 12px;
}
.acesso_rapido_smxs ul li a {
  display: block;
  padding: 5px 0;
}
.collapse,
.collapse.in,
.collapsing {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
#acesso_rapido_smxs {
  margin: 0 15px;
}
.acesso_rapido_smxs .collapsed svg {
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.acesso_rapido_smxs svg {
  height: 10px;
  width: 15px;
  color: #a6b3a1;
  display: inline-block;
  float: right;
  margin-top: 4px;
}
.administracao .texto_apresentacao p {
  margin-bottom: 20px;
  color: var(--neutral-dark);
}
.administracao .texto_apresentacao p:last-child {
  margin-bottom: 0;
}
.administracao .title_menu_dir span {
  color: #728554;
}
.foto_infosgerais .item svg {
  color: #bdc9ab;
  height: 40px;
  width: 40px;
  vertical-align: top;
  display: inline-block;
  margin-right: 15px;
}
.foto_infosgerais .item {
  margin-bottom: 20px;
}
.foto_infosgerais .item:last-child {
  margin-bottom: 0;
}
.foto_infosgerais .item span {
  display: inline-block;
  vertical-align: top;
  width: calc(100% - 75px);
  color: var(--neutral-dark);
  line-height: 160%;
}
.foto_infosgerais .item span strong {
  font-size: 17px;
  font-weight: bold;
}
.foto_infosgerais .item a {
  color: inherit;
}
.foto_infosgerais .item a:hover {
  text-decoration: underline;
}
.foto_infosgerais span.sec {
  font-size: 16px;
  color: #85796c;
  margin-top: 7px;
  display: block;
}
.atrativos_turisticos_int .infos_atrativo svg {
  margin-top: 0;
}
.sec_esportes_button {
  display: block;

  width: 100%;
  padding: 22px 0;
  border: 1px solid #c8c8c8;

  color: #559257;
  text-align: center;
  font-style: italic;
  font-weight: bold;
  font-size: 20px;

  background: #f4f7f4;
  background: -webkit-linear-gradient(
    #f4f7f4 1%,
    #f4f7f4 30%,
    #e6ece5 89%,
    #e6ece5 100%
  );
  background: -o-linear-gradient(
    #f4f7f4 1%,
    #f4f7f4 30%,
    #e6ece5 89%,
    #e6ece5 100%
  );
  background: linear-gradient(
    #f4f7f4 1%,
    #f4f7f4 30%,
    #e6ece5 89%,
    #e6ece5 100%
  );

  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f4f7f4', endColorstr='#e6ece5',GradientType=0 );

  transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
}
.voltar_sec {
  margin-bottom: 30px;
  display: block;
  text-decoration: underline;
  font-size: 15px;
}
.sec_esportes_button svg {
  color: #6a9f6b;
  height: 34px;
  width: 34px;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.sec_esportes_button:hover,
.sec_esportes_button:hover svg {
  color: #456348;
}
.servicos_online .sec_esportes_button {
  margin-bottom: 30px;
}
.sec_esportes_button:hover span.definicao {
  color: #549257;
}
.servicos_online .sec_esportes_button span.definicao {
  display: block;
  font-size: 13px;
  margin-top: 5px;
  font-weight: 400;
}
.foto_infosgerais h2 {
  font-size: 30px;
  color: #858585;
  margin-top: 0;
  margin-bottom: 30px;
  font-weight: 600;
}
.navbar-fixed-top {
  -webkit-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  background-color: #00a05c;
}
.navbar-fixed-top .navbar-nav > li > a {
  padding: 20px 20px;
}
.navbar-fixed-top .navbar-header {
  background-color: #00a05c;
}
.navbar-fixed-top .navbar-header button {
  float: right;
}

#navbar2 .navbar-nav,
#navbar .navbar-nav {
  background: #00a05c;
}

.navbar-collapse {
  border: none;
}

.galerias_de_fotos .subtitulo h2,
.subtitulo h2 {
  font-size: 26px;
  color: var(--neutral-dark);
}
.galerias_de_fotos .subtitulo {
  color: var(--neutral-dark);
  margin-bottom: 25px;
}
.compartilhe_noticia {
  margin-bottom: 15%;
}
.compartilhe_noticia p {
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 13px;
  color: #525252;
  background-color: #dfdfdf;
}
.compartilhe_noticia svg {
  width: 13px;
  height: 24px;
  color: #6c6c6c;
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
  margin-right: 20px;
}
.pagination a,
.pagination span {
  padding: 18px;
  border: 1px solid #dddddd !important;
  font-size: 18px;
  color: #85796c;
  margin-right: -4px;
}
.pagination {
  padding: 18px 3px 18px 0;
  -webkit-box-shadow: 0 6px 6px -6px #cacaca;
  -moz-box-shadow: 0 6px 6px -6px #cacaca;
  box-shadow: 0 6px 6px -6px #cacaca;
}
#carousel_fotos {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  background-color: #0d5935;
}
#carousel_fotos .owl-item.center img {
  outline-offset: -10px;
  outline: 1px solid #fff;
  opacity: 1;
  position: relative;
}
#carousel_fotos .owl-item img {
  outline-offset: -10px;
  outline: 1px solid #0d5935;
  -webkit-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  opacity: 0.5;
}
#carousel_fotos .owl-prev,
#carousel_fotos .owl-next {
  position: absolute;
  bottom: calc(50% - 25px);
  display: inline-block;
}
#carousel_fotos .owl-nav svg {
  opacity: 0.6;
  height: 50px;
  width: 50px;
  color: #000;
  -webkit-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}
#carousel_fotos .owl-nav svg:hover {
  opacity: 1;
}
#carousel_fotos .owl-prev {
  left: 5%;
}
#carousel_fotos .owl-next {
  right: 5%;
}
#carousel_fotos .padding_internas {
  padding-top: 30px !important;
}
.under_shadow {
  -webkit-box-shadow: 0 10px 6px -6px #cacaca;
  -moz-box-shadow: 0 10px 6px -6px #cacaca;
  box-shadow: 0 10px 6px -6px #cacaca;
}
.acesso_rapido_index {
  background-color: #ecf1e7;
  margin-bottom: 50px;
}
.acesso_rapido_index .botao {
  width: 12.5%;
  margin: 0;
  float: left;
  padding: 30px 10px;
  display: inline-block;
  text-align: center;
  background-size: cover;
}
.acesso_rapido_index .botao span,
.acesso_rapido_index .botao span strong {
  color: #999999;
  font-size: 14px;
  line-height: 120%;
}
.acesso_rapido_index .botao span strong {
  font-size: 17px;
}
.acesso_rapido_index .botao svg {
  height: 30px;
  width: 30px;
  padding: 5px;
  color: #ecf1e7;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  background-color: #c0d2ae;
  -webkit-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

.acesso_rapido_index .botao svg.inverse {
  background: none;
  color: #0d5935;
  width: 35px;
  height: 35px;
  margin-bottom: 15px;
}

.acesso_rapido_index .botao svg.svg_type2 {
  background-color: transparent;
  color: #c0d2ae;
  padding: 0;
}

.acesso_rapido_index .botao:hover {
  background-image: url("../images/bg_buttons.png");
}

.acesso_rapido_index .botao:hover svg {
  color: #00803d;
  background-color: #ffffff;
}

.acesso_rapido_index .botao:hover svg.svg_type2 {
  background-color: #00803d;
  color: #ffffff;
  padding: 0;
}

.acesso_rapido_index .botao:hover span,
.acesso_rapido_index .botao:hover span strong {
  color: #ffffff;
}

.index .titulo h1 {
  color: #00a05c;
}

.index .titulo h2 {
  font-size: 30px;
  color: #00a05c;
  margin-top: 0;
  margin-bottom: 5px;
}

.index .fixed-banners {
  max-width: 1100px;
  margin-inline: auto;
  padding: 1rem;
}

.index .fixed-banners img {
  width: 100%;
}

.titulo.servicos {
  margin-bottom: 20px;
}

.index .titulo {
  margin-bottom: 15px;
}

.noticias_index .caixa {
  min-height: 300px;
  border: 1px solid #e8e8e8;
  padding: 20px 10px;
}
.border_int {
  outline-offset: -10px;
  outline: 1px solid #ffffff;
}
.index .noticia span.titulo_not {
  display: block;
  color: #7a9b45;
  font-size: 20px;
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 0;
  min-height: 72px;
}
.index .noticia p {
  color: #999999;
  font-size: 14px;
  margin-bottom: 0;
}
.index .noticia span.data {
  display: block;
  padding: 10px 0;
  border-top: 2px dotted #cacaca;
  border-bottom: 2px dotted #cacaca;
  margin-bottom: 10px;
  color: #999;
}
.index .noticia_small span.data {
  margin-top: 5px;
  padding: 5px 0;
}
.index .noticia_small span.title_noticia {
  display: block;
  color: #858585;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 0;
  min-height: 0;
}
#noticias_nav .nav-tabs > li > a,
.nav-tabs > li > a:hover,
.nav-tabs > li > a:focus {
  color: #555;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 0;
  margin-right: 0;
  margin-left: 5px;
  padding: 6.5px 7px;
}
#noticias_nav .nav-tabs > li > a:hover {
  background-color: #ddd;
}
#noticias_nav .nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  color: #555;
  cursor: default;
  background-color: #e1e1e1;
  border: 1px solid #ddd;
  border-radius: 0;
}
#noticias_nav .nav-tabs {
  border-bottom: 0;
  float: right;
  margin-top: 10px;
}
.agenda_e_servicos .agenda_index {
  background-color: #efefef;
  padding: 40px;
}
.agenda_index .evento {
  padding: 10px;
  border-left: 4px solid #c3c3c3;
  color: #999999;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.agenda_index a:hover .evento {
  border-left: 4px solid #7a9b45;
  color: #7a9b45;
}
.agenda_index a:hover .evento h3 {
  color: #7a9b45;
}
.evento a {
  color: inherit;
}
.agenda_index .evento span.data {
  font-size: 16px;
  color: inherit;
}
.agenda_index .evento h3 {
  font-size: 18px;
  font-weight: bold;
  color: #858585;
  margin-top: 5px;
  min-height: 38px;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.agenda_index .evento p {
  font-size: 14px;
  color: inherit;
  margin-bottom: 0;
}
.agenda_index .agenda_titulo {
  color: #00a05c;
  margin: 15px 0;
  font-size: 30px;
  font-weight: bold;
}
.agenda_index .todos_eventos {
  border: 1px solid #999999;
  font-size: 14px;
  padding: 10px;
  display: block;
  color: #999999;
  max-width: 170px;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}
.agenda_index .todos_eventos:hover {
  background-color: #00a05c;
  border: 1px solid #00a05c;
  color: #ffffff;
}
.agenda_index svg {
  height: 60px;
  width: 60px;
  color: #00a05c;
}
ul.servicos_e_atividades_index {
  padding: 0;
}
.servicos_e_atividades_index li {
  display: inline-block;
  float: left;
  width: calc((99%) / 6);
  margin: 10px 0 0 0;
  min-height: 70px;
}
.servicos_e_atividades_index li a {
  color: inherit;
  display: inline-block;
  padding: 10px;
  width: 100%;
  border-left: 1px solid #c3c3c3;
}
.servicos_e_atividades_index a:hover span {
  color: #588b43;
  font-weight: bold;
}
.servicos_e_atividades_index a:hover svg {
  color: #588b43;
}
.servicos_e_atividades_index a span {
  display: inline-block;
  vertical-align: middle;
  color: #999999;
  width: calc(100% - 45px);
  font-size: 13px;
}
.servicos_e_atividades_index svg {
  display: inline-block;
  vertical-align: middle;
  color: #a3bd88;
  width: 35px;
  height: 35px;
  margin-right: 3px;
}

.atrativos .tag {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0, 0);
  height: 120px;
  padding: 20px;
  padding-top: 30px;
  font-weight: 300;
}
.atrativos .tag span {
  color: #fff;
  font-size: 16px;
  display: none;
  text-transform: uppercase;
}
.atrativos .tag a {
  color: #559232;
  font-size: 16px;
  background-color: #fff;
  padding: 8px 35px;
  border-radius: 5px;
  position: absolute;
  right: 30px;
  bottom: 30px;
}
.atrativos .tag strong {
  font-size: 20px;
}
.atrativos .imagem:hover .tag {
  background-color: rgba(0, 0, 0, 0.6);
}
.atrativos .imagem:hover .tag span {
  display: block;
}
span.atalho {
  display: inline-block;
  font-size: 13px;
}
.atrativos_turisticos_int .noticia_int_infos h2 {
  margin-top: 0;
  margin-bottom: 30px;
}
.atrativos_turisticos_int_infos .infos_atrativo {
  margin-bottom: 20px;
}
.atrativos_turisticos_int_infos .infos_atrativo a.linkmapa {
  display: inline-block;
  margin-bottom: 20px;
}
.atrativos_turisticos_int_infos .infos_atrativo span {
  display: block;
  font-size: 15px;
  color: #999999;
}
.atrativos_turisticos_int_infos .infos_atrativo span.ver_mapa {
  display: inline-block;
  vertical-align: middle;
  margin-top: 3px;
  margin-left: 5px;
  font-size: 16px;
  color: #7fb37e;
  font-weight: bold;
}
.noticia_int_infos.atrativos_turisticos_int_infos p {
  font-size: 15px;
  color: #999999;
}
.infos_atrativo svg {
  color: #80b47e;
  height: 34px;
  width: 34px;
  margin-top: 20px;
}
#map_atrativo {
  width: 100%;
  height: 380px;
  margin-bottom: 150px;
  margin-top: 50px;
}
#map2 {
  width: 100%;
  height: 400px;
  margin: 100px 0;
  border: 5px solid #eaeaea;
}
.servicos_atividades .subtitle_atividades {
  width: 100%;
  background-color: #00a05c;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.servicos_atividades .subtitle_atividades h2 {
  font-size: 13px;
  padding: 5px 20px;
  font-weight: 600;
  color: #fff;
  margin: 10px;
}
#carousel_atividades {
  position: relative;
  margin-top: 40px;
}
#carousel_atividades .owl-prev {
  position: absolute;
  left: 5%;
  top: 50px;
}
#carousel_atividades .owl-next {
  position: absolute;
  right: 5%;
  top: 50px;
}
#carousel_atividades span {
  display: block;
  width: 50%;
  margin-left: 25%;
}
#carousel_atividades svg {
  height: 55px;
  width: 55px;
  margin-bottom: 15px;
  color: #ddddd5;
  display: block;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
#carousel_atividades .owl-nav svg {
  height: 40px;
  width: 40px;
  color: #d6d6d6;
}
#carousel_atividades .owl-carousel .owl-item {
  padding: 0 70px;
}
.ex-prefeito {
  margin-bottom: 30px;
}
.ex-prefeito img {
  margin-bottom: 10px;
}
.ex-prefeito span {
  font-size: 15px;
  color: #999999;
  padding: 0 10px;
}
.ex-prefeito span strong {
  font-size: 20px;
}
.escolha_ano .ano {
  color: #737373;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0;
  margin-right: 10px;
}
.escolha_ano #escolha_ano {
  font-size: 14px;
  color: var(--neutral-dark);
  padding: 5px 120px 5px 5px;
}
.escolha_ano_input {
  font-size: 14px;
  color: var(--neutral-dark);
  padding: 5px 120px 5px 5px;
}
.escolha_ano .selecao {
  font-size: 13px;
  font-weight: normal;
  color: #7faa00;
  margin-bottom: 0;
  margin-left: 5px;
}
.exportar_dados {
  float: right;
  margin-top: 4px;
}
.exportar_dados svg {
  height: 25px;
  width: 25px;
  margin-left: 1px;
  display: inline-block;
  vertical-align: middle;
  color: #d3d6cf;
  position: relative;
  cursor: pointer;
}
.exportar_dados svg:hover,
.download_arquivo svg:hover {
  color: #83957b;
}
.exportar_dados p {
  font-size: 13px;
  color: #737373;
  margin-right: 5px;
  margin-bottom: 0;
}
.cse .gsc-search-button input.gsc-search-button-v2,
input.gsc-search-button-v2 {
  width: auto !important;
  height: auto !important;
}
.gsib_a {
  padding: 1px 6px 0 !important;
}
#busca_google {
  margin-top: 30px;
}
#busca_google p {
  font-size: 12px;
  margin-bottom: 0;
}
#list-docs-pattern {
  margin-top: 45px;
  margin-bottom: 50px;
}
.sub_titulo_pergunta {
  font-size: 26px;
  color: var(--neutral-dark);
  margin-top: 30px;
}
.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -7px;
  border-width: 0 8px 5px;
  border-bottom-color: #83957b;
}
.tooltip-inner {
  padding: 5px 13px;
  color: #fff;
  font-size: 12px;
  background-color: #83957b;
  border-radius: 0;
}
.download_arquivo svg {
  height: 30px;
  width: 30px;
  margin-left: 6px;
  display: inline-block;
  vertical-align: middle;
  color: #d3d6cf;
  position: relative;
}
.download_arquivo {
  float: right;
  margin-top: 30px;
}
.download_arquivo p {
  margin-bottom: 0;
}

.informacoes_selecionadas {
  margin-top: 35px;
  padding-top: 35px;
  border-top: 1px solid #cccccc;
}

.informacoes_selecionadas p {
  color: #737373;
  line-height: 150%;
  margin-right: 2px;
}

.informacoes_selecionadas .t1 {
  font-size: 16px;
  color: #525252;
  font-weight: bold;
}

.tabela_clima:not(.tabela_mes_anterior) {
  margin-bottom: 20px;
}

.accordion_clima_mes_anterior {
  margin-top: 50px;
  margin-bottom: 50px;
}

.accordion_clima_mes_anterior .panel-default > .panel-heading {
  padding: 0;
}

.accordion_clima_mes_anterior .panel-default > .panel-heading a {
  padding: 10px 15px;
  width: 100%;
  display: inline-block;
  font-size: 16px;
}

.tabela_clima .table {
  border: 1px solid #c3c3c3;
  margin-bottom: 0;
}

.tabela_clima th,
.tabela_clima td {
  vertical-align: middle !important;
}

.tabela_clima th,
.tabela_clima td {
  text-align: center;
}

.tabela_clima th {
  border-bottom: none !important;
  border-top: none !important;
}

.tabela_clima th svg {
  height: 20px;
  width: 20px;
}

.tabela_clima th svg,
.tabela_clima th {
  color: #777;
  font-weight: 600;
}

.tabela_clima td,
.tabela_clima tbody th {
  font-size: 15px;
}

.tabela_clima td {
  color: #999999;
}

.tabela_clima tr th:first-child {
  border-right: 1px solid #c3c3c3 !important;
}

.tabela_clima .table > thead > tr,
.tabela_clima tr th:first-child {
  background-color: #eaeaea;
}

.tabela_clima:not(.tabela_mes_anterior) tbody tr:last-child,
.tabela_clima:not(.tabela_mes_anterior) tbody tr:last-child th {
  background-color: #c52f39;
}

.tabela_clima:not(.tabela_mes_anterior) tbody tr:last-child td,
.tabela_clima:not(.tabela_mes_anterior) tbody tr:last-child th {
  color: #fff !important;
}

.tabela_clima:not(.tabela_mes_anterior) tbody tr:last-child th {
  border-top: 1px solid #c3c3c3 !important;
  border-right: none !important;
}

.tabela_clima .table > :is(tbody, tfoot, tbody, tfoot) > tr > :is(th, td) {
  padding: 4px 5px;
}

.tabela_clima .table > thead > tr > :is(td, th) {
  padding: 10px;
  line-height: 120%;
}

.tabela_clima .table > thead > tr > th,
.tabela_clima .table > tbody > tr > th,
.tabela_clima .table > tfoot > tr > th,
.tabela_clima .table > thead > tr > td,
.tabela_clima .table > tbody > tr > td,
.tabela_clima .table > tfoot > tr > td {
  border-top-color: #c3c3c3;
}

.pg_clima .txt_title {
  margin-bottom: 20px;
}

.pg_clima .txt_title svg,
.pg_clima .txt_title span {
  color: #c52f39;
}

.pg_clima .txt_title svg,
.pg_clima .txt_acumulado svg {
  height: 30px;
  width: 27px;
  margin-right: 5px;
}

.pg_clima .txt_title span,
.pg_clima .txt_acumulado span {
  font-size: 20px;
  font-weight: 600;
}

.pg_clima .txt_acumulado svg,
.pg_clima .txt_acumulado span {
  color: #a3bd8a;
}

.pg_clima .txt_acumulado {
  margin-bottom: 20px;
}

.pg_clima .txt_precipitacao_mes span {
  color: #999999;
  font-size: 15px;
  font-weight: 600;
}

.pg_clima .txt_precipitacao_mes span strong {
  font-weight: 700;
}

.pg_clima .txt_precipitacao_mes span strong,
.pg_clima .txt_precipitacao_mes svg,
.accordion_clima_mes_anterior .panel-default > .panel-heading a {
  color: var(--neutral-dark);
}

.pg_clima .txt_precipitacao_mes svg {
  height: 20px;
  width: 15px;
  margin-right: 5px;
  margin-left: 20px;
}

.conteudo_tabela_clima {
  display: none;
}

.insta_flores {
  padding: 40px 0;
  background-color: #efefef;
}

.col-titulo-videos {
  text-align: center;
}

.col-titulo-videos a,
.col-titulo-videos p {
  font-size: 13px;
  color: #0d733d;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.col-titulo-videos a {
  display: inline-block;
  padding: 5px 20px;
  border: 1px solid #0f753d;
}

.col-titulo-videos a:hover {
  background-color: #0f753d;
  color: #fff;
}

.tv_flores .data {
  font-size: 12px;
  color: #6d6d6d;
  margin-bottom: 5px;
  display: inline-block;
}

.tv_flores .titulo_video {
  font-size: 17px;
  font-weight: 600;
  color: #6d6d6d;
}

.col-videos-index iframe {
  width: 100%;
  height: 167px;
  border: none;
}

.logo_2p {
  height: 40px;
}

.botoes_opcoes {
  max-width: 550px;
  margin: 50px auto 50px;
}
.botoes_opcoes a {
  padding: 0 15px;
  background-color: #fff;
  border: 1px solid #e8e8e8;
  border-bottom: none;
  display: inline-block;
  width: 100%;
}
.botoes_opcoes a:last-child {
  border-bottom: 1px solid #e8e8e8;
}
.botoes_opcoes a svg {
  height: 25px;
  width: 25px;
  color: #999;
  margin: 20px 15px 20px 0;
}
.botoes_opcoes a svg.seta {
  height: 20px;
  width: 11px;
  margin: 0;
}
.botoes_opcoes a span {
  font-size: 14px;
  color: #999;
  width: calc(100% - 60px);
}
.botoes_opcoes a span strong {
  font-size: 18px;
  font-weight: 600;
  line-height: 120%;
}
.botoes_opcoes a:hover span,
.botoes_opcoes a:hover span strong,
.botoes_opcoes a:hover svg {
  color: #00a05c;
}

.insta_flores p:not(.instagram_name) {
  font-size: 18px;
  color: #00a05c;
}

.insta_flores .follow {
  padding: 5px 30px;
  outline: none;
  border: 1px solid #00a05c;
  color: #00a05c;
  position: absolute;
  right: 20px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.insta_flores .follow:hover {
  background: #00a05c;
  color: #fff;
}

.instagram_name {
  font-size: 19px;
  color: #00a05c;
  font-weight: bold;
  text-transform: uppercase;
}

#carousel_insta a {
  height: 100%;
  width: 100%;
  position: relative;
  padding: 10px;
  display: block;
}

#carousel_insta a img {
  height: 100%;
  width: 100%;
}

.owl-dots {
  display: flex;
  width: 100%;
  justify-content: center;
}

.owl-dots * {
  height: 15px;
  width: 15px;
  margin-right: 7px;
}

.owl-dots .owl-dot span {
  position: relative;
}

.owl-dots .owl-dot span::before {
  content: "";
  position: absolute;
  height: 15px;
  width: 15px;
  border-radius: 50%;
  background: #a7a6a6;
  transition: background-color 0.2s ease;
}

.owl-dots .owl-dot.active span::before {
  background: #727272;
}

.owl-carousel {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.d-none {
  display: none;
}

.m-b-15 {
  margin-bottom: 15px;
}
.m-b-30 {
  margin-bottom: 30px;
}
.m-b-40 {
  margin-bottom: 40px;
}
.m-b-50 {
  margin-bottom: 50px;
}
.m-b-100_l {
  margin-bottom: 100px;
}

.visible1300 {
  display: none !important;
}

.entrepreneur-room-page .card-accordion {
  padding-top: 2rem;
}

.entrepreneur-room-page .card-accordion .panel-heading {
  padding: 0;
}

.entrepreneur-room-page .card-accordion .panel-title a {
  display: block;

  width: 100%;
  height: 100%;
  padding: 1rem;
}

.entrepreneur-room-page .card-accordion .multi-columns-card-container {
  padding: 2rem;
}

.justify-space-between {
  display: flex;
  justify-content: space-between;
}

.d-entrepreneur {
  display: flex;
  padding: 1rem 2rem;
}
.btn-entrepreneur div {
  margin: 1rem;
}
.btn-entrepreneur a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;

  height: 50px;
  gap: 1rem;

  color: white;
}

.color-1 {
  border: 1px solid #32a54e;
  background-color: #32a54e;
  border-radius: 50px;
}

.color-2 {
  border: 1px solid #32a54e;
  background-color: #32a54e;
  border-radius: 50px;
}

.btn-entrepreneur svg {
  width: 25px;
}

.image-entrepreneur {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  padding: 1rem;
}
.image-entrepreneur img {
  max-height: 150px;
}

.entrepreneur-icons {
  display: flex;
  justify-content: space-evenly;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 2rem;

  color: #32a54e;
}
.entrepreneur-icons svg {
  width: 25px;
  height: 25px;
}
.entrepreneur-icons p {
  font-size: 20px;
  font-weight: bold;
  margin: 0;
}

.entrepreneur-icons div {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 60px;
}

.entrepreneur-jobs {
  margin-block: 3rem;
}
.entrepreneur-jobs p {
  margin-block: 2.5rem;
}

.entrepreneur-jobs div{
  padding: 1rem;
  color: white;
  background-color: #32a54e;
  width: 250px;
  border-radius: 5px;
  text-align: center;
}

.entrepreneur-text h3{
  font-size: 16px;
  font-weight: bold;
}


@media (min-width: 1300px) {
  .index #carousel_fotos {
    min-height: 473px;
  }
  .agenda_index svg {
    margin-top: 25px;
  }
  .visible1300 {
    display: block;
  }
  .m-t-evento {
    margin-top: 32px;
    padding-left: 10px;
  }
  .container {
    width: 1270px;
  }
  .agenda_index .evento {
    min-height: 120px;
  }
  .tabs_noticias_index li > a p {
    font-size: 16px;
    min-height: 32px;
  }
  .tabs_noticias_index {
    padding-top: 14px;
  }
  .tabs_noticias_index li > a {
    padding: 12px 20px;
  }
  .navbar-nav > li > a {
    padding: 20px 20px;
  }
  .agenda_eventos {
    margin-left: 15px;
  }
  #carousel_insta a {
    height: 250px;
    width: 250px;
  }
}

@media (min-width: 1200px) and (max-width: 1299px) {
  .pesquisa_cabecalho input,
  .pesquisa_cabecalho button {
    height: 45px;
  }
  .servicos_e_atividades_index li {
    width: calc((99%) / 3);
    margin: 12px 0;
  }
  .servicos_e_atividades_index svg {
    height: 45px;
    width: 45px;
  }
  .servicos_e_atividades_index a span {
    font-size: 13px;
    width: calc(100% - 70px);
  }
  .servicos_e_atividades_index li a {
    padding: 7px;
  }
  .rodape2 .fone,
  .rodape2 .email,
  .rodape2 .endereco {
    font-size: 15px;
  }
  .noticia .line {
    height: 163px;
  }
  .noticias_index .caixa {
    min-height: 316px;
  }
  .rodape2 span {
    font-size: 15px;
  }
  .noticia span.tag,
  .noticias_int span.tag {
    font-size: 11px;
    padding: 5px 15px;
  }
  .navbar-fixed-top .navbar-nav > li > a {
    padding: 20px 17px;
  }
}
@media (min-width: 1200px) {
  .col-videos-index {
    padding-left: 40px;
  }
  .modal-dialog {
    width: 682px;
  }
  .rodape1 {
    margin-top: 150px;
  }
  .padl01200 {
    padding-left: 0;
  }
  .selos .modal-content {
    margin-top: 150px;
  }
  .acesso_rapido_index .botao {
    min-height: 170px;
  }
  .noticia_int_infos .main_image {
    margin-bottom: 15px;
    border-left: 25px solid transparent;
  }
}
@media (max-width: 1199px) {
  .atrativos_turisticos_int_infos img {
    margin-bottom: 30px;
  }
  .noticia span.tag,
  .noticias_int span.tag {
    font-size: 11px;
    padding: 5px 15px;
  }
  .noticia h2 {
    font-size: 15px;
  }
  .noticia h3 {
    font-size: 12px;
  }
  .m-b-100_l {
    margin-bottom: 50px;
  }
  .rodape2 {
    padding-bottom: 20px;
  }
  .agenda_index .evento span.data,
  .agenda_index .evento p {
    font-size: 12px;
  }
  .agenda_index .evento h3 {
    font-size: 13px;
  }
  .agenda_index .agenda_titulo {
    font-size: 25px;
  }
  .insta_header {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .insta_header img {
    max-width: 50%;
  }
  .instagram_info .follow {
    position: static;
    max-width: 150px;
    text-align: center;
  }
  .instagram_info p {
    font-size: 14px !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .enfeite_cab img {
    height: 85px;
  }
  .pesquisa_cabecalho input,
  .pesquisa_cabecalho button {
    height: 40px;
  }
  .navbar-fixed-top .navbar-nav > li > a {
    padding: 20px 7px;
  }
  .servicos_e_atividades_index li {
    width: calc((99%) / 3);
    margin: 12px 0;
  }
  .servicos_e_atividades_index svg {
    height: 45px;
    width: 45px;
  }
  .servicos_e_atividades_index a span {
    font-size: 13px;
    width: calc(100% - 70px);
  }
  .servicos_e_atividades_index li a {
    padding: 7px;
  }
  .navbar-nav > li > a {
    font-size: 16px;
    padding: 20px 23px;
  }
  .noticias_index .caixa {
    min-height: 320px;
  }
  .noticia_small .caixa {
    min-height: 154px;
    margin-bottom: 10px;
  }
  .index .noticia_small span.title_noticia {
    font-size: 11px;
  }
  .rodape2 .endereco {
    margin-top: 0;
  }
  .acesso_rapido_index .botao span,
  .acesso_rapido_index .botao span strong {
    font-size: 14px;
  }
  .acesso_rapido_index .botao {
    min-height: 138px;
  }
  .acesso_rapido_index .botao {
    padding: 20px 10px;
  }
  #div-meteorologia .span-valor {
    font-size: 16px;
  }
  #div-meteorologia .chamada_tempo {
    font-size: 16px;
  }
  #div-meteorologia {
    margin-top: 5px;
  }
  #div-meteorologia svg.ico-display {
    height: 25px;
  }
}
@media (min-width: 992px) {
  .rodape1 strong {
    font-size: 17px;
  }
  .texto_atendimento {
    text-align: left;
  }
  #carousel_insta a {
    position: relative;
  }
  #carousel_insta a:before {
    content: "";
    position: absolute;
    width: 85%;
    height: 85%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 160, 93, 0.9);
    mix-blend-mode: multiply;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    z-index: 1;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 0;
  }

  #carousel_insta a:hover:before,
  #carousel_insta a:hover:after {
    opacity: 1;
  }

  #carousel_insta a:after {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    left: calc(50% - 20px);
    top: calc(50% - 20px);
    background-image: url(../images/instagram.png);
    background-size: cover;
    z-index: 2;
    opacity: 0;
  }
}
@media (max-width: 991px) {
  .atrativos .imagem .tag {
    background-color: rgba(0, 0, 0, 0.6);
    padding-top: 15px;
    height: 60px;
  }
  .atrativos .imagem .tag span {
    display: block;
    font-size: 9px;
  }
  .atrativos .tag strong {
    font-size: 12px;
  }
  .listagem_videos .info {
    align-items: flex-start;
  }
  .listagem_videos .info p {
    text-align: left;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .rodape2 .fone,
  .rodape2 .email,
  .rodape2 .endereco {
    font-size: 13px;
  }
  .rodape2 .endereco svg,
  .rodape2 .fone svg,
  .rodape2 .email svg {
    width: 22px;
  }
  .rodape2 .redes_sociais {
    position: absolute;
    right: 30px;
    top: 0;
  }
  .listagem_videos .info {
    align-items: flex-start;
  }
  .listagem_videos p {
    text-align: left;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .servicos_e_atividades_index li {
    width: calc((99%) / 3);
    margin: 12px 0;
  }
  .servicos_e_atividades_index svg {
    height: 40px;
    width: 40px;
  }
  .servicos_e_atividades_index a span {
    font-size: 12px;
    width: calc(100% - 60px);
  }
  .servicos_e_atividades_index li a {
    padding: 7px;
  }
  .acesso_rapido_smxs ul li a {
    font-size: 15px;
  }
  .navbar-nav > li > a {
    font-size: 13px;
    padding: 15px 14px;
  }
  .noticias_index .caixa {
    min-height: 580px;
  }
  .rodape2 span {
    font-size: 15px;
  }
  .noticia_small .caixa {
    margin-bottom: 10px;
    min-height: initial;
  }
  .index .noticia span.data {
    padding: 5px 0;
    margin-top: 15px;
  }
  .rodape2 .endereco {
    margin-top: 8px;
  }
  .atrativos .tag a {
    font-size: 10px;
    padding: 4px 12px;
    right: 20px;
    bottom: 20px;
  }
  .agenda_index .evento h3 {
    font-size: 15px;
  }
  .agenda_index .evento span.data,
  .agenda_index .evento p {
    font-size: 11px;
  }
  .agenda_index .agenda_titulo {
    font-size: 25px;
  }
  .agenda_e_servicos .agenda_index {
    padding: 15px;
  }
  .index .noticia h3 {
    font-size: 13px;
    margin-bottom: 12px;
    min-height: initial;
  }
  .navbar-fixed-top .navbar-nav > li > a {
    padding: 20px 4px;
    font-size: 12px;
  }
  .pesquisa_cabecalho button {
    height: 30px;
  }
  .pesquisa_cabecalho input {
    height: 30px;
  }
  .acesso_rapido_smxs {
    margin-top: 15px;
  }
  .acesso_rapido_smxs a {
    padding: 15px 25px;
  }
  #acesso_rapido_smxs {
    margin: 0 25px;
  }
}
@media (min-width: 768px) {
  #navbar .navbar-nav {
    float: none;
  }
  .rodape2 .endereco {
    margin-top: 10px;
  }
  .foto_infosgerais .img_principal {
    border: 1px solid #b9b4ac;
    padding: 10px;
  }
  .noticias_int .border_right {
    border-right: 1px solid #aaaaaa;
  }
  .horario1 {
    text-align: center;
    margin-right: 4.8%;
  }
  .subtitle h2 a {
    margin-top: 5px;
  }
  .agenda_eventos .subtitle h2 {
    width: calc(100% - 37px);
  }
  .agenda_eventos ul li {
    padding: 10px;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }
  .agenda_eventos .data span {
    background-color: #a5b48b;
    color: #ffffff;
    padding: 15px 20px;
    display: inline-block;
    margin-right: 10px;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }
  .padr0 {
    padding-right: 0;
  }
  .padl0 {
    padding-left: 0;
  }
  span.caret_xs {
    display: none;
  }
  .dropdown-menu > li > a {
    text-align: left;
  }
  .nav > li > a:hover span.caret,
  .nav .open > a:focus span.caret {
    display: block;
  }
  span.caret {
    position: absolute;
    right: 10px;
    top: 33px;
    display: none;
  }
  .dropdown-menu > li:last-child a {
    border-bottom: none;
  }
  .open > .dropdown-menu {
    background-color: #007949 !important;
  }
  .navbar-header {
    display: none;
  }
  .ver_todos_eventos_xs {
    display: none;
  }
  .cabecalho:after {
    position: absolute;
    bottom: -2px;
    content: " ";
    width: 100%;
    height: 2px;
    background-color: #00a05c;
  }
  .administracao hr {
    margin: 45px 0;
  }
  .navbar-fixed-top .navbar-nav {
    float: right;
  }
  .navbar-fixed-top .logo_2 {
    margin-top: 10px;
    margin-left: 15px;
  }
  .navbar-nav > li {
    float: none;
    display: inline-block;
  }
}
@media (max-width: 767px) {
  .m-b-40 {
    margin-bottom: 20px;
  }
  .servicos_atividades {
    padding-bottom: 30px;
  }
  .m-b-100_l {
    margin-bottom: 30px;
  }
  #carousel_fotos {
    margin-bottom: 15px;
  }
  .text-left-xs {
    text-align: left;
  }
  .agenda_e_servicos .agenda_index {
    background-color: transparent;
    padding: 0;
  }
  .agenda_index .evento {
    margin-top: 15px;
  }
  .agenda_index .evento h3 {
    margin-bottom: 0;
  }
  .agenda_index svg {
    margin-top: 0;
    display: inline-block;
    vertical-align: middle;
    height: 25px;
    width: 25px;
  }
  .agenda_index .agenda_titulo {
    font-size: 22px;
    display: inline-block;
    vertical-align: middle;
  }
  .index .titulo h1 {
    display: none;
  }
  .noticias_index .caixa {
    min-height: 0;
    padding: 10px;
  }
  .index .noticia span.data {
    border-top: none;
    border-bottom: none;
    margin-bottom: 0;
  }
  .index .caixa {
    margin-bottom: 15px;
  }
  .atrativos .tag .bgwhite {
    display: none;
  }
  .atrativos .imagem {
    margin-bottom: 30px;
  }
  .conselhos .modal .resultado {
    padding: 0;
  }
  .pagination a,
  .pagination span {
    padding: 10px;
    font-size: 14px;
  }
  .pagination {
    padding: 10px 3px 10px 0;
  }
  .outras_noticias .title_menu_dir span {
    font-size: 16px;
    font-weight: 600;
  }
  .foto_infosgerais .item span {
    width: 100%;
  }
  .foto_infosgerais .item span strong {
    font-size: 15px;
  }
  .foto_infosgerais h2 {
    font-size: 20px;
  }
  .foto_infosgerais span.sec {
    font-size: 15px;
  }
  .foto_infosgerais .item svg {
    display: none;
  }
  .foto_infosgerais .img_principal img {
    padding: 10px;
    border: 1px solid #ccc;
  }
  .administracao .breadcrumb {
    margin-bottom: 3px;
  }
  .titulo {
    border-bottom: 0;
    margin-bottom: 15px;
  }
  .titulo h1 {
    font-size: 20px;
  }
  .titulo h2 {
    font-size: 18px;
  }
  .index .titulo h2 {
    font-size: 23px;
    margin-top: 15px;
  }
  .cabecalho .nav > li > a:hover,
  .cabecalho .nav .open > a,
  .cabecalho .nav .open > a:hover,
  .cabecalho .nav .open > a:focus {
    background-color: #00a05c !important;
  }
  .padding_internas {
    margin-left: -15px;
    margin-right: -15px;
  }
  .noticia_int_infos .compartilhe svg {
    height: 24px;
    width: 24px;
  }
  .noticia_int_infos .compartilhe {
    padding: 10px;
  }
  .noticia_int_infos .compartilhe span {
    font-size: 13px;
  }
  .noticia span.tag,
  .noticias_int span.tag {
    font-size: 13px;
    padding: 5px 25px;
  }
  .noticia .detalhes {
    margin-top: 15px;
  }
  .rodape2 .fone,
  .rodape2 .email,
  .rodape2 .endereco {
    font-size: 12px;
    text-align: center;
  }
  .rodape2 .fone {
    margin: 15px 0;
  }
  .rodape2 .redes_sociais {
    float: none;
    text-align: center;
    margin-top: 20px;
    position: initial;
  }
  .rodape2 span {
    font-size: 13px;
  }
  .rodape1 {
    margin-left: -15px;
    margin-right: -15px;
  }
  .rodape2 .redes_sociais svg {
    height: 25px;
    width: 25px;
  }
  .rodape1 span {
    font-size: 13px;
  }
  .horario1 {
    margin-bottom: 20px;
  }
  .subtitle h2 {
    padding-left: 0;
  }
  .descricao_album h2 {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .obras_albuns_index .descricao_obra a {
    display: block;
    text-align: center;
    max-width: 450px;
  }
  .agenda_eventos ul li {
    padding: 8px 0;
  }
  .agenda_eventos .data span {
    font-size: 14px;
    color: #a2b388;
    font-weight: 400;
  }
  .ver_todos_eventos_xs {
    display: block;
    padding: 10px;
    border: 1px solid #867c6f;
    text-align: center;
    font-size: 13px;
    color: #857a6d;
    max-width: 450px;
  }
  .agenda_eventos .nome_evento {
    width: 100%;
    font-size: 14px;
    font-weight: 400;
    color: #797064;
  }
  .descricao_noticia span.data {
    margin-top: 15px;
  }
  .descricao_noticia h2 {
    margin-top: 5px;
    font-size: 16px;
    margin-bottom: 20px;
  }
  .descricao_noticia {
    width: 100%;
  }
  .foto_noticia {
    margin-right: 0;
    width: 100%;
    margin-bottom: 15px;
  }
  .descricao_noticia a.todas_noticias {
    right: 35px;
  }
  .qnt_fotos a.todas_noticias {
    position: initial;
    display: inline-block;
    margin-top: 15px;
  }
  .qnt_fotos {
    margin-top: 0;
  }
  .subtitle h2 {
    font-size: 18px;
  }
  .agenda_eventos {
    margin: 30px 0;
  }
  .navbar-toggle {
    float: none;
    border-radius: 0;
    margin-left: 2px;
    margin-right: 0;
  }
  .gsc-results-wrapper-overlay {
    width: 100% !important;
    left: 0 !important;
    text-align: left;
    height: 90% !important;
  }
  .search_xs input {
    outline-color: #00a05c;
    height: 35px;
    width: calc(100% - 50px);
    padding-left: 10px;
    border: 1px solid #ddd;
  }
  .search_xs svg {
    height: 20px;
    width: 20px;
    color: #a0a0a0;
  }
  .search {
    margin-right: 15px;
  }
  .navbar-toggle svg {
    height: 20px;
    width: 20px;
    color: #fff;
  }
  .cabecalho {
    background: #eff8ed;
  }
  .navbar {
    margin-bottom: 0;
  }
  .cabecalho {
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .navbar-toggle {
    background-color: #00a05c;
    border: #00a05c;
  }
  .cab_index .cabecalho.bg1,
  .cab_index .cabecalho.bg2,
  .cab_index .cabecalho.bg3,
  .cab_index .cabecalho.bg4,
  .cab_index .cabecalho.grey1,
  .cab_index .cabecalho.grey2,
  .cab_index .cabecalho.grey3,
  .cab_index .cabecalho.grey4,
  .cabecalho.bg1,
  .cabecalho.bg2,
  .cabecalho.bg3,
  .cabecalho.bg4 {
    background: #ffffff;
  }
  .navbar-nav > li > a {
    font-size: 14px;
    padding: 8px 20px;
    font-weight: 600;
  }
  .cab_index .cabecalho.bg1,
  .cab_index .cabecalho.bg2,
  .cab_index .cabecalho.bg3,
  .cab_index .cabecalho.bg4,
  .cab_index .cabecalho.grey1,
  .cab_index .cabecalho.grey2,
  .cab_index .cabecalho.grey3,
  .cab_index .cabecalho.grey4,
  .cabecalho.bg1,
  .cabecalho.bg2,
  .cabecalho.bg3,
  .cabecalho.bg4 {
    padding-bottom: 0;
  }
  span.caret {
    display: none;
  }
  span.caret_xs {
    display: inline-block;
    margin-right: 5px;
  }
  .dropdown-menu > li:first-child a {
    border-top: 1px solid #fff;
  }
  .dropdown-menu > li > a {
    border-bottom: 1px solid #fff;
  }
  .navbar-nav {
    margin: 0 -15px;
  }
  .dropdown-menu {
    padding: 0;
    margin-bottom: 10px;
  }
  .nav > li > a:hover,
  .nav .open > a,
  .nav .open > a:hover,
  .nav .open > a:focus {
    background-color: #00a05c !important;
  }
  .dropdown-menu li a {
    background-color: #00a05c;
    font-size: 13px;
  }
  .dropdown-menu li a.active {
    background-color: #c13c3c;
  }
  .navbar-nav .open .dropdown-menu > li > a {
    line-height: 14px;
    white-space: normal;
    font-size: 13px;
  }
  #navbar {
    padding: 0 15px;
  }
  .navbar-nav .open .dropdown-menu > li > a,
  .navbar-nav .open .dropdown-menu .dropdown-header {
    padding: 5px 3px 5px 25px;
    font-weight: 300;
    text-align: right;
  }
  .contents_svg_top svg,
  .acessibilidade svg,
  .mapa_site_cab svg {
    color: #868688;
    padding: 3px;
    height: 25px;
    width: 25px;
    margin: 0 3px;
    display: inline-block;
  }
  .background_fluid {
    background-color: #fff;
  }
  .contents_svg_top,
  .mapa_site_cab,
  .acessibilidade_xs {
    background-color: transparent;
    height: auto;
    width: auto;
    margin: 2px;
  }
  .m-r-divs {
    margin-right: -10px;
  }
  .breadcrumb {
    margin-bottom: 10px;
    border-top: 1px solid #00a05c;
    padding-top: 15px;
    border-radius: 0;
  }
  .navbar-fixed-top .navbar-nav > li > a {
    padding: 6px 20px;
    text-align: right;
  }
  .navbar-fixed-top .navbar-nav .open .dropdown-menu > li > a {
    text-align: right;
  }
  .navbar-fixed-top .navbar-header button {
    margin-right: 10px;
    margin-top: 10px;
    border: 1px solid #fff;
  }
  .navbar-fixed-top .logo_2 {
    margin: 10px 10px;
  }
  .navbar-fixed-top .navbar-nav .open .dropdown-menu {
    float: none;
  }
  .servicos_e_atividades_index li {
    width: calc((99%) / 2);
    margin: 12px 0;
  }
  .servicos_e_atividades_index svg {
    height: 35px;
    width: 35px;
  }
  .servicos_e_atividades_index a span {
    font-size: 10px;
    width: calc(100% - 47px);
  }
  .servicos_e_atividades_index li a {
    padding: 7px;
  }
  .search_xs {
    margin-bottom: 10px;
  }
  .galeria_secao img {
    margin-bottom: 30px;
  }
  #div-meteorologia .span-valor {
    font-size: 15px;
  }
  #div-meteorologia svg.ico-display {
    height: 25px;
  }
  #div-meteorologia .chamada_tempo {
    font-size: 15px;
  }
  #div-meteorologia .left-temp {
    text-align: left;
    width: 28%;
  }
  #div-meteorologia {
    margin-bottom: 5px;
  }
}
@media (min-width: 450px) and (max-width: 767px) {
  .max_450 {
    width: 100%;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 350px) {
  .insta_header img {
    width: 150px;
    max-width: 100%;
  }
}

@media (max-width: 305px) {
  .logo_xs_cab img {
    height: 35px;
  }
}

.cse .gsc-search-button-v2,
.gsc-search-button-v2 {
  padding: 6px 10px !important;
  border-color: #bdbfc1 !important;
  background-color: #bdbfc5 !important;
}
input.gsc-input {
  height: 40px !important;
}
.gsc-control-cse {
  padding: 0 !important;
  border-color: transparent !important;
  background-color: transparent !important;
}
.gsc-search-button-v2 svg {
  height: 18px;
  width: 18px;
  margin: 5px;
}
