/*--------------------------------------------------------------
# CSS
--------------------------------------------------------------*/
:root {
  --primary-color: 160, 160, 160;
  --second-color: 255, 255, 255;
}

body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #E0AF07; /* cor principal do site - AMARELO ESCURO */
  text-decoration: none;
}

a:hover {
  color: #D1D1D1;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #E0AF07;
  border-top-color: #e2eefd;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 75px;
  z-index: 996;
  background: #E0AF07;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 1.75em;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #3284f1;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/* =========================================================
   NOVO CABEÇALHO - CÂMARA MUNICIPAL DE CAMPO FLORIDO
========================================================= */

:root {
  --cf-blue: #E0AF07;
  --cf-blue-dark: #1b3554;
  --cf-blue-light: #edf3f8;
  --cf-white: #ffffff;
  --cf-gray: #f5f6f7;
  --cf-border: #e3e7eb;
  --cf-text: #34404c;
  --cf-muted: #71808e;
}

/* =========================================================
   1ª LINHA
========================================================= */

.cf-top-access {
  background: #f4f5f6;
  border-bottom: 1px solid var(--cf-border);
}

.cf-top-access-grid {
  min-height: 44px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

/* WEBMAIL */

.cf-top-left {
  display: flex;
  justify-content: flex-start;
}

.cf-service-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cf-blue);
  font-size: .8125em;
  font-weight: 600;
  text-decoration: none;
}

.cf-service-button i {
  width: 27px;
  height: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cf-blue);
  color: white;
  border-radius: 50%;
  font-size: 1em;
}

/* CONTROLES DE ACESSIBILIDADE */

.cf-access-tools {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 3px;
  background: white;
  border: 1px solid #dce1e5;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}

.cf-access-tools button {
  width: 32px;
  height: 29px;
  border: 0;
  border-radius: 16px;
  background: transparent;
  color: var(--cf-blue);
  font-size: .75em;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s ease;
}

.cf-access-tools button:hover {
  background: var(--cf-blue);
  color: white;
}

/* ATALHOS DE ACESSIBILIDADE */

.cf-top-shortcuts {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
  font-size: .75em;
}

.cf-top-shortcuts a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #58636e;
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s ease;
}

.cf-top-shortcuts a:hover {
  color: var(--cf-blue);
}

.cf-top-shortcuts .cf-access-icon {
  width: 1.25em !important;
  height: 1.25em !important;
  object-fit: contain !important;
  display: block !important;
}

.cf-top-shortcuts i {
  font-size: 1.15em;
  color: var(--cf-blue);
  line-height: 1;
}

/* =========================================================
   2ª LINHA
========================================================= */

.cf-contact-bar {
  background: var(--cf-blue);
  color: white;
}

.cf-contact-grid {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* CONTATO */

.cf-contact-left {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: .8125em;
}

.cf-contact-left a,
.cf-contact-left span {
  color: rgba(255,255,255,.92);
  text-decoration: none;
}

.cf-contact-left i {
  margin-right: 6px;
}

.cf-contact-separator {
  width: 1px;
  height: 15px;
  background: rgba(255,255,255,.25);
}

/* PORTAL TRANSPARÊNCIA */

.cf-transparency-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 15px;
  color: white;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 20px;
  font-size: .75em;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s ease;
}

.cf-transparency-button:hover {
  background: white;
  color: var(--cf-blue);
}

/* =========================================================
   3ª LINHA
========================================================= */

.cf-main-header {
  background: white;
  border-bottom: 1px solid #edf0f2;
  position: relative;
  z-index: 1000;
  overflow: visible;
}

.cf-main-header-grid {
  min-height: 125px;
  display: grid;
  grid-template-columns: 280px minmax(300px, 520px) 210px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* LOGO */

.cf-logo-area {
  display: flex;
  align-items: center;
}

.cf-logo-area a {
  display: inline-block;
}

.cf-logo-area img {
  display: block;
  height: 90px; /* TAMANHO DA LOGO */
  width: auto;
  object-fit: contain;
}

/* BUSCA */

.cf-search-area {
  width: 100%;
  position: relative;
  z-index: 1001;
}

.cf-search-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-bottom: 7px;
  color: var(--cf-muted);
  font-size: .75em;
  font-weight: 500;
}

.cf-search-title i {
  color: var(--cf-blue);
}

/* REDES SOCIAIS */

.cf-social-area {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 9px;
}

.cf-social-area > span {
  color: #7a858f;
  font-size: .6875em;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .6px;
}

.cf-social-icons {
  display: flex;
  gap: 8px;
}

.cf-social-icons a {
  width: 39px;
  height: 39px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cf-blue);
  border: 1px solid #dce3e9;
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.0625em;
  transition: all .2s ease;
}

.cf-social-icons a:hover {
  background: var(--cf-blue);
  border-color: var(--cf-blue);
  color: white;
  transform: translateY(-2px);
}

/* =========================================================
   4ª LINHA - MENU PRINCIPAL
========================================================= */

.cf-menu-bar {
  background: #ffffff;
  border-top: 1px solid #edf0f3;
  border-bottom: 2px solid var(--cf-blue);
  box-shadow: 0 4px 12px rgba(0,0,0,.025);
  position: relative;
  z-index: 996;
}

/* MENU */

.cf-navbar {
  width: 100%;
  padding: 0;
  justify-content: center;
}

.cf-navbar > ul {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

/* REMOVE BOLINHAS / MARCADORES DO CSS ANTIGO */

.cf-navbar ul,
.cf-navbar ul li,
.cf-navbar ul li::before,
.cf-navbar ul li::after {
  list-style: none !important;
}

.cf-navbar > ul > li::before,
.cf-navbar > ul > li::after {
  content: none !important;
  display: none !important;
}

/* ITEM PRINCIPAL */

.cf-navbar > ul > li {
  position: relative;
  margin: 0 !important;
  padding: 0 !important;
}

.cf-navbar > ul > li > a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 18px 13px 17px;
  color: #384656;
  background: transparent !important;
  font-size: .875em;
  font-weight: 500;
  line-height: 1;
  text-decoration: none !important;
  border: 0 !important;
  border-radius: 0;
  transition: color .2s ease;
}

/* HOVER */

.cf-navbar > ul > li > a:hover,
.cf-navbar > ul > li:hover > a {
  color: var(--cf-blue);
}

/* SUBLINHADO */

.cf-navbar > ul > li > a::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 8px;
  width: 0;
  height: 2px;
  background: var(--cf-blue);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width .22s ease;
}

.cf-navbar > ul > li:hover > a::before,
.cf-navbar > ul > li > a:hover::before {
  width: 28px;
}

.cf-navbar > ul > li > a::after {
  content: none !important;
  display: none !important;
}

/* SETINHA */

.cf-navbar .dropdown > a .bi-chevron-down {
  font-size: .72em;
  margin-left: 1px;
  color: #7b8793;
  transition: transform .2s ease;
}

.cf-navbar .dropdown:hover > a .bi-chevron-down {
  transform: rotate(180deg);
  color: var(--cf-blue);
}

/* =========================================================
   DROPDOWN
========================================================= */

.cf-navbar .dropdown {
  position: relative;
}

.cf-navbar .dropdown > ul {
  position: absolute;
  top: 100%;
  left: 50%;
  min-width: 245px;
  display: block;
  margin: 0 !important;
  padding: 8px !important;
  background: #ffffff;
  border: 1px solid #e5e9ed !important;
  border-top: 1px solid #e5e9ed !important;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(38,70,109,.10), 0 2px 6px rgba(0,0,0,.03);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 7px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  z-index: 999;
}

.cf-navbar .dropdown > ul::before,
.cf-navbar .dropdown > ul::after {
  content: none !important;
  display: none !important;
}

.cf-navbar .dropdown:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

/* ITENS */

.cf-navbar .dropdown ul li {
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.cf-navbar .dropdown ul li::before,
.cf-navbar .dropdown ul li::after {
  content: none !important;
  display: none !important;
}

/* LINKS INTERNOS */

.cf-navbar .dropdown ul a {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 11px 13px;
  color: #566473;
  background: transparent;
  border: 0 !important;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 400;
  text-decoration: none !important;
  transition: background .16s ease, color .16s ease, padding .16s ease;
}

.cf-navbar .dropdown ul a::before,
.cf-navbar .dropdown ul a::after {
  content: none !important;
  display: none !important;
}

.cf-navbar .dropdown ul a:hover {
  color: var(--cf-blue);
  background: #f2f6fa;
  padding-left: 17px;
}

/* =========================================================
   SUBMENU - ABRIR PARA A DIREITA
========================================================= */

@media (min-width: 992px) {

  /* Item que possui submenu */
  .cf-navbar .dropdown ul .dropdown {
    position: relative;
  }

  /* Submenu de segundo nível */
  .cf-navbar .dropdown ul .dropdown > ul {
    top: 0;
    left: 100%;
    margin-left: 8px !important;

    /* Remove o posicionamento do dropdown principal */
    transform: translate(7px, 0);

    opacity: 0;
    visibility: hidden;
  }

  /* Exibe o submenu para a direita */
  .cf-navbar .dropdown ul .dropdown:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translate(0, 0);
  }

  /* Texto + seta separados */
  .cf-navbar .dropdown ul .dropdown > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
  }

  /* Seta do submenu */
  .cf-navbar .dropdown ul .dropdown > a .bi-chevron-right {
    margin-left: auto;
    font-size: .72em;
    color: #7b8793;
    flex-shrink: 0;
  }

  .cf-navbar .dropdown ul .dropdown:hover > a .bi-chevron-right {
    color: var(--cf-blue);
  }
}

/* =========================================================
   RESPONSIVO - CABEÇALHO E MENU
========================================================= */

@media (min-width: 992px) {
  .cf-navbar .mobile-nav-toggle {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .cf-top-access-grid {
    grid-template-columns: 1fr auto;
  }

  .cf-top-shortcuts,
  .cf-social-area {
    display: none;
  }

  .cf-main-header-grid {
    grid-template-columns: 1fr auto;
    min-height: 95px;
    gap: 20px;
  }

  .cf-logo-area img {
    height: 85px;
    width: auto;
  }

  .cf-search-area {
    grid-column: 1 / -1;
    padding-bottom: 15px;
  }

  .cf-menu-bar {
    min-height: 50px;
    display: flex;
    align-items: center;
	z-index: 100001 !important;
  }

  /* MENU MOBILE */
  .cf-navbar {
    display: flex;
    justify-content: flex-end;
  }

  .cf-navbar > ul {
    display: none;
  }

  .cf-navbar .mobile-nav-toggle {
    display: block !important;
    color: var(--cf-blue);
    font-size: 28px;
    cursor: pointer;
  }

  /* MENU ABERTO */
  .cf-navbar.navbar-mobile {
    position: fixed;
    inset: 0;
    z-index: 100002 !important;
    display: block;
    padding: 70px 20px 20px;
    background: rgba(0,0,0,.6);
  }

  .cf-navbar.navbar-mobile > ul {
    display: block;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    padding: 10px !important;
    background: #fff;
    border-radius: 8px;
  }

  .cf-navbar.navbar-mobile > ul > li > a {
    justify-content: space-between;
    padding: 14px 12px;
  }
  
  .cf-navbar.navbar-mobile .link-menu-icone {
	  justify-content: flex-start;
	  gap: 8px;
	}

  .cf-navbar.navbar-mobile .mobile-nav-toggle {
	  position: absolute;
	  top: 20px;
	  right: 20px;
	  z-index: 100003 !important;
	  color: #fff;
	  font-size: 30px;
	}

  .cf-navbar.navbar-mobile .dropdown > ul {
    position: static;
    display: none;
    min-width: 100%;
    margin: 0 !important;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
  }

  .cf-navbar.navbar-mobile .dropdown > ul.dropdown-active {
	  display: block;
  }
}

@media (max-width: 767px) {
  .cf-top-access-grid {
    display: flex;
    justify-content: space-between;
    min-height: 42px;
  }
  
  .cf-service-button {
	  font-size: .75em;
	  gap: 6px;
	}

	.cf-service-button i {
	  width: 25px;
	  height: 25px;
	  font-size: 1em;
	  flex-shrink: 0;
	}

  .cf-contact-grid {
    min-height: 40px;
  }

  .cf-contact-left span,
  .cf-contact-separator {
    display: none;
  }

  .cf-transparency-button {
    padding: 6px 10px;
  }

  .cf-main-header-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 0;
  }

  .cf-logo-area img {
    height: 80px;
    width: auto;
  }

  .cf-search-area {
    width: 100%;
    padding-bottom: 0;
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 50vh; /*-- ALTURA DO QUADRO --*/
  background: url("../img/hero-bg.jpg") top left;
  background-size: cover;
  position: relative;
}

#hero:before {
  content: "";
  background: rgba(255, 255, 255, 0.0); /*-- 0.6 EU COLOCO OPACIDADE NA IMAGEM DO QUADRO --*/
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  position: relative;
}

#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #222222;
  font-family: "Poppins", sans-serif;
}

#hero h1 span {
  color: #E0AF07;
}

#hero h2 {
  color: #555555;
  margin: 5px 0 30px 0;
  font-size: 1.5em;
  font-weight: 400;
}

#hero .btn-get-started {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 0.875em;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #E0AF07;
}

#hero .btn-get-started:hover {
  background: #247cf0;
}

#hero .btn-watch-video {
  font-size: 1em;
  transition: 0.5s;
  margin-left: 25px;
  color: #222222;
  font-weight: 600;
  display: flex;
  align-items: center;
}

#hero .btn-watch-video i {
  color: #E0AF07;
  font-size: 2em;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

#hero .btn-watch-video:hover {
  color: #E0AF07;
}

#hero .btn-watch-video:hover i {
  color: #D1D1D1;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero {
    height: 100vh;
  }

  #hero h1 {
    font-size: 1.75em;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 1.125em;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #hero .btn-get-started,
  #hero .btn-watch-video {
    font-size: 0.8125em;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f6f9fe;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 0.8125em;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: #e7f1fd;
  color: #E0AF07;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
}

.section-title h3 {
  margin: 15px 0 0 0;
  font-size: 2em;
  font-weight: 700;
}

.section-title h3 span {
  color: #E0AF07;
}

.section-title p {
  margin: 15px auto 0 auto;
  font-weight: 600;
}

@media (min-width: 1024px) {
  .section-title p {
    width: 50%;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #f1f6fe;
  min-height: 40px;
}

.breadcrumbs h2 {
  font-size: 1.5em;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.875em;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Featured Services
--------------------------------------------------------------*/
.featured-services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;

  /* NOVO */
  display: block;
  width: 100%;
  color: #111;
  text-decoration: none;
  cursor: pointer;
}

.featured-services .icon-box::before {
  content: "";
  position: absolute;
  background: #cbe0fb;
  right: 0;
  left: 0;
  bottom: 0;
  top: 100%;
  transition: all 0.3s;
  z-index: -1;
}

.featured-services .icon-box:hover::before {
  background: #E0AF07;
  top: 0;
  border-radius: 0;
}

.featured-services .icon {
  margin-bottom: 15px;
}

.featured-services .icon i {
  font-size: 48px;
  line-height: 1;
  color: #E0AF07;
  transition: all 0.3s ease-in-out;
}

.featured-services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 1.125em;
  color: #111;
}

.featured-services .description {
  font-size: 0.9375em;
  line-height: 28px;
  margin-bottom: 0;
  color: #444;
}

/* Quadro inteiro no hover */
.featured-services .icon-box:hover .title,
.featured-services .icon-box:hover .description {
  color: #fff;
}

.featured-services .icon-box:hover .icon i {
  color: #fff;
}

/* Evita sublinhado em qualquer estado */
.featured-services .icon-box:hover,
.featured-services .icon-box:focus,
.featured-services .icon-box:active {
  text-decoration: none;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
}

.about .content ul li:first-child {
  margin-top: 35px;
}

.about .content ul i {
  background: #fff;
  box-shadow: 0px 6px 15px rgba(16, 110, 234, 0.12);
  font-size: 1.5em;
  padding: 20px;
  margin-right: 15px;
  color: #E0AF07;
  border-radius: 50px;
}

.about .content ul h5 {
  font-size: 1.125em;
  color: #555555;
}

.about .content ul p {
  font-size: 0.9375em;
}

.about .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #222222;
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: #e2eefd;
  height: 10px;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: #E0AF07;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 70px 0 60px;
}

.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background: #f1f6fe;
}

.counts .count-box i {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.5em;
  background: #E0AF07;
  color: #fff;
  width: 56px;
  height: 56px;
  line-height: 0;
  border-radius: 50px;
  border: 5px solid #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: #191919;
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 0.875em;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding: 15px 0;
  text-align: center;
}

.clients img {
  max-width: 100%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
}

.clients img:hover {
  transform: scale(1.15);
}

@media (max-width: 768px) {
  .clients img {
    max-width: 40%;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  border: 1px solid #e2eefd;
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #f1f6fe;
  border-radius: 4px;
  border: 1px solid #deebfd;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: ease-in-out 0.3s;
}

.services .icon-box .icon i {
  color: #D1D1D1;
  font-size: 1.75em;
  transition: ease-in-out 0.3s;
}

.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 1.5em;
}

.services .icon-box h4 a {
  color: #222222;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 0.875em;
  margin-bottom: 0;
}

.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(16, 110, 234, 0.1);
}

.services .icon-box:hover h4 a,
.services .icon-box:hover .icon i {
  color: #E0AF07;
}

.services .icon-box:hover .icon {
  border-color: #E0AF07;
}

/*================================
 <-- BLOCOS INTERNOS PADRÃO - ESTRUTURA, FOTOS E CONTEÚDO -->
==================================*/
.bloco-interno {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(340px, 1fr);
  width: 100%;
  margin: 40px 0 0;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,.08);
  border-bottom: 4px solid #E0AF07;
}

.bloco-interno-imagem {
  position: relative;
  width: 100%;
  min-width: 0;
  height: 540px;
  overflow: hidden;
  background: #eee;
}

.bloco-interno-imagem > img,
.bloco-interno-carousel .item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.bloco-interno-imagem > img { transition: transform .4s ease; }
.bloco-interno:hover .bloco-interno-imagem > img { transform: scale(1.02); }

.bloco-interno-conteudo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 45px;
}

.bloco-interno-legenda {
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 5px;
  color: #E0AF07;
  font-size: .78em;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.secao-texto-geral .bloco-interno-conteudo h4 {
  margin: 8px 0 28px;
  color: #222;
  font-size: 1.5em;
}


/*================================
 <-- BLOCOS INTERNOS PADRÃO - CARROSSEL DE FOTOGRAFIAS -->
==================================*/
.bloco-interno-slider {
  width: 100%;
  height: 540px;
}

.bloco-interno-slider .swiper-wrapper,
.bloco-interno-slider .swiper-slide {
  width: 100%;
  height: 100%;
}

.bloco-interno-slider .swiper-slide {
  overflow: hidden;
}

.bloco-interno-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.bloco-interno-slider .swiper-pagination {
  bottom: 18px !important;
}

.bloco-interno-slider .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: #fff;
  opacity: .7;
}

.bloco-interno-slider .swiper-pagination-bullet-active {
  width: 22px;
  border-radius: 10px;
  background: #E0AF07;
  opacity: 1;
}

@media (max-width: 991px) {
  .bloco-interno-slider { height: 450px; }
}

@media (max-width: 767px) {
  .bloco-interno-slider { height: 320px; }
}

@media (max-width: 480px) {
  .bloco-interno-slider { height: 260px; }
}


/*================================
 <-- BLOCOS INTERNOS PADRÃO - INFORMAÇÕES E BOTÕES -->
==================================*/
.bloco-interno-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bloco-interno-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.bloco-interno-icone {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff8dc;
  border-radius: 50%;
}

.bloco-interno-icone i { color: #E0AF07; font-size: 1.35em; }

.bloco-interno-item strong {
  display: block;
  margin-bottom: 3px;
  color: #333;
  font-size: .9em;
  font-weight: 700;
}

.secao-texto-geral .bloco-interno-item p {
  margin: 0;
  color: #666;
  font-size: .95em;
  line-height: 1.55em;
  text-align: left;
  font-weight: 400;
}

.bloco-interno-item a { color: #555; text-decoration: none; transition: .3s; }
.bloco-interno-item a:hover { color: #E0AF07; }

.bloco-interno-acoes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.bloco-interno-acoes a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 12px 22px;
  background: #222;
  color: #fff;
  border-radius: 30px;
  font-size: .9em;
  font-weight: 600;
  text-decoration: none;
  transition: .3s;
}

.bloco-interno-acoes a:hover { background: #E0AF07; color: #222; }


/*================================
 <-- BLOCOS INTERNOS PADRÃO - VARIAÇÕES E RESPONSIVO -->
==================================*/
.bloco-interno.invertido { grid-template-columns: minmax(340px, 1fr) minmax(0, 1.6fr); }
.bloco-interno.invertido .bloco-interno-imagem { order: 2; }
.bloco-interno.invertido .bloco-interno-conteudo { order: 1; }

@media (max-width: 991px) {
  .bloco-interno, .bloco-interno.invertido { grid-template-columns: 1fr; }
  .bloco-interno.invertido .bloco-interno-imagem, .bloco-interno.invertido .bloco-interno-conteudo { order: initial; }
  .bloco-interno-imagem, .bloco-interno-carousel .item { height: 450px; }
  .bloco-interno-conteudo { padding: 40px; }
}

@media (max-width: 767px) {
  .bloco-interno { margin-top: 30px; border-radius: 10px; }
  .bloco-interno-imagem, .bloco-interno-carousel .item { height: 320px; }
  .bloco-interno-conteudo { padding: 30px 25px; }
  .secao-texto-geral .bloco-interno-conteudo h4 { font-size: 1.3em; }
}

@media (max-width: 480px) {
  .bloco-interno-imagem, .bloco-interno-carousel .item { height: 260px; }
  .bloco-interno-conteudo { padding: 25px 20px; }
  .bloco-interno-icone { width: 38px; height: 38px; flex-basis: 38px; }
  .bloco-interno-acoes { flex-direction: column; }
  .bloco-interno-acoes a { width: 100%; }
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  padding: 60px 0;
}

.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(16, 110, 234, 0.15);
}

.titulo-destaque {
    color: #E0AF07; /* Define a cor do texto */
    text-decoration: underline; /* Adiciona sublinhado ao texto */
    font-size: 1.5em; /* Ajusta o tamanho do texto */
    font-weight: bold; /* Define o texto em negrito */
    position: relative; /* Necessário para posicionar o marcador */
}

.titulo-destaque::before {
    content: "➤ "; /* Adiciona a seta como marcador */
    color: #E0AF07; /* Define a cor da seta */
    position: absolute; /* Garante que a seta fique alinhada */
    left: -30px; /* Ajusta a posição da seta */
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.team .member .social a {
  transition: color 0.3s;
  color: #222222;
  margin: 0 3px;
  padding-top: 7px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  background: rgba(16, 110, 234, 0.8);
  display: inline-block;
  transition: ease-in-out 0.3s;
  color: #fff;
}

.team .member .social a:hover {
  background: #D1D1D1;
}

.team .member .social i {
  font-size: 1.125em;
}

.team .member .member-info {
  padding: 25px 15px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 1.125em;
  color: #222222;
}

.team .member .member-info span {
  display: block;
  font-size: 0.8125em;
  font-weight: 400;
  color: #aaaaaa;
}

.team .member .member-info p {
  font-style: italic;
  font-size: 0.875em;
  line-height: 26px;
  color: #777777;
}

.team .member:hover .social {
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.pricing .box h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 1em;
  font-weight: 600;
  color: #777777;
  background: #f8f8f8;
}

.pricing .box h4 {
  font-size: 36px;
  color: #E0AF07;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}

.pricing .box h4 sup {
  font-size: 1.25em;
  top: -15px;
  left: -3px;
}

.pricing .box h4 span {
  color: #bababa;
  font-size: 1em;
  font-weight: 300;
}

.pricing .box ul {
  padding: 0;
  list-style: none;
  color: #444444;
  text-align: center;
  line-height: 20px;
  font-size: 0.875em;
}

.pricing .box ul li {
  padding-bottom: 16px;
}

.pricing .box ul i {
  color: #E0AF07;
  font-size: 1.125em;
  padding-right: 4px;
}

.pricing .box ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .btn-wrap {
  margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  background: #f8f8f8;
  text-align: center;
}

.pricing .btn-buy {
  background: #E0AF07;
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  color: #fff;
  transition: none;
  font-size: 0.875em;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  background: #D1D1D1;
}

.pricing .featured h3 {
  color: #fff;
  background: #E0AF07;
}

.pricing .advanced {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 0.875em;
  padding: 1px 0 3px 0;
  background: #E0AF07;
  color: #fff;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq {
  padding: 60px 0;
}

.faq .faq-list {
  padding: 0;
  list-style: none;
}

.faq .faq-list li {
  border-bottom: 1px solid #d4e5fc;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.faq .faq-list .question {
  display: block;
  position: relative;
  font-family: #E0AF07;
  font-size: 1.125em;
  line-height: 24px;
  font-weight: 400;
  padding-left: 25px;
  cursor: pointer;
  color: #0d58ba;
  transition: 0.3s;
}

.faq .faq-list i {
  font-size: 1em;
  position: absolute;
  left: 0;
  top: -2px;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 25px;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list .collapsed {
  color: black;
}

.faq .faq-list .collapsed:hover {
  color: #E0AF07;
}

.faq .faq-list .collapsed .icon-show {
  display: inline-block;
  transition: 0.6s;
}

.faq .faq-list .collapsed .icon-close {
  display: none;
  transition: 0.6s;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.3);
  padding: 20px 0 30px 0;
}

.contact .info-box i {
  font-size: 2em;
  color: #E0AF07;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #b3d1fa;
}

.contact .info-box h3 {
  font-size: 1.25em;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 0.875em;
  margin-bottom: 0;
}

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.4);
  padding: 30px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
  margin-bottom: 20px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 0.875em;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #E0AF07;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
  background: #E0AF07;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

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

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #fff;
  padding: 0 0 30px 0;
  color: #444444;
  font-size: 0.875em;
  background: #f1f6fe;
}

#footer .footer-newsletter {
  padding: 50px 0;
  background: #f1f6fe;
  text-align: center;
  font-size: 0.9375em;
}

#footer .footer-newsletter h4 {
  font-size: 1.5em;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
  text-align: left;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 1em;
  padding: 0 20px;
  background: #E0AF07;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: #0d58ba;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #fff;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 1.5em;
  margin: 0 0 15px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact h3 span {
  color: #E0AF07;
}

#footer .footer-top .footer-contact p {
  font-size: 0.9375rem;   /* ~15px, escala junto com zoom */
  line-height: 1.5;       /* altura de linha confortável */
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
  color: #555555;         /* contraste suave */
}

#footer .footer-top .footer-contact a {
  font-size: 1rem;
  line-height: 1.5;
  color: #555555;
}

#footer .footer-top h4 {
  font-size: 1.3em;   /* exemplo: ~20px se o padrão for 16px */
  font-weight: bold;
  color: #444444;
  position: relative;
  padding-bottom: 12px;
}


#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #E0AF07;
  font-size: 1.125em;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  font-size: 1rem;   /* ~16px padrão, mas escala com A+ / A- */
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  font-size: 1rem;   /* garante consistência */
  line-height: 1.5;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #E0AF07;
}

#footer .footer-top .social-links a {
  font-size: 1.125em;
  display: inline-block;
  background: #E0AF07;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #D1D1D1;
  color: #fff;
  text-decoration: none;
}

#footer .copyright {
  text-align: center;
  float: left;
}

#footer .credits {
  float: right;
  text-align: center;
  font-size: 0.875em;
  color: #444444;
}

/* ===== Footer: ajuste fino dos títulos (h4) ===== */
#footer .footer-top h4 {
  font-size: 1.1em;   /* base (~17px) */
  line-height: 1.25;
  margin: 0 0 12px;
}

/* ≥992px (desktop) */
@media (min-width: 992px) {
  #footer .footer-top h4 {
    font-size: 1.2em; /* ~19px */
  }
}

/* ≥1200px (desktops grandes) */
@media (min-width: 1200px) {
  #footer .footer-top h4 {
    font-size: 1.25em; /* ~20px */
  }
}

/* ===== Footer: imagens no rodapé junto ao link ===== */
#footer .footer-top .footer-links ul li a {
  display: inline-flex;
  align-items: flex-start;
  gap: 6px;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: normal;
  line-height: 1.5;
  max-width: 100%;
}

#footer .footer-top .footer-links ul li a img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex: 0 0 18px;
  display: block;
  margin-top: 3px;
}

/* =========================================
   MENU HIERÁRQUICO DO FOOTER - PREFEITURA
========================================= */

#footer .footer-top .footer-links ul.footer-menu-hierarquia {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul.footer-menu-hierarquia li {
  display: block;
  padding: 6px 0;
  font-size: 1rem;
}

/* Item principal */
#footer .footer-top .footer-links ul.footer-menu-hierarquia li.nivel-1 a {
  color: #555555;
  font-weight: normal;
}

/* Título do grupo/submenu */
#footer .footer-top .footer-links ul.footer-menu-hierarquia li.titulo-submenu {
  margin-top: 8px;
  padding-top: 6px;
  color: #555555;
  font-weight: normal;
  font-size: 1rem;
}

/* Subitens */
#footer .footer-top .footer-links ul.footer-menu-hierarquia li.nivel-2 {
  padding-left: 22px;
  position: relative;
}

#footer .footer-top .footer-links ul.footer-menu-hierarquia li.nivel-2::before {
  content: "↳";
  position: absolute;
  left: 4px;
  top: 6px;
  color: #E0AF07;
  font-size: 14px;
}

#footer .footer-top .footer-links ul.footer-menu-hierarquia li.nivel-2 a {
  color: #777777;
  font-size: 0.95rem;
}

#footer .footer-top .footer-links ul.footer-menu-hierarquia a:hover {
  color: #E0AF07;
  text-decoration: none;
}

/* SUBMENUS DO FOOTER */
#footer .footer-top .footer-links ul.footer-menu-hierarquia li.nivel-2 {
  padding-left: 38px;
  position: relative;
  list-style: none;
}

/* Remove marcadores automáticos do tema */
#footer .footer-top .footer-links ul.footer-menu-hierarquia li.nivel-2::marker {
  display: none;
}

/* Setinha curva */
#footer .footer-top .footer-links ul.footer-menu-hierarquia li.nivel-2::before {
  content: "↳";
  position: absolute;
  left: 18px;
  top: 10px;
  color: #E0AF07;
  font-size: 14px;
  font-weight: normal;
}

/* ==========================================================
   Start slider-area Css
   BANNERS PRINCIPAIS
   Padrão das artes: 2000x700px
   ========================================================== */

.abs_list {
    width: 100%;
    overflow: hidden;
}

.abs_list .owl-stage-outer,
.abs_list .owl-stage,
.abs_list .owl-item {
    width: 100%;
}

/* Configuração geral dos banners */
.slider-area1,
.slider-area2,
.slider-area3,
.slider-area4,
.slider-area5,
.slider-area6,
.slider-area7,
.slider-area8,
.slider-area9,
.slider-area10 {
    width: 100%;
    aspect-ratio: 20 / 7;
    max-height: 700px;

    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;

    position: relative;
    z-index: 1;
}

/* Imagens individuais */
.slider-area1 {
    background-image: url(../img/banner-01.jpg);
}

.slider-area2 {
    background-image: url(../img/banner-02.jpg?v=20260622);
}

.slider-area3 {
    background-image: url(../img/banner-03.jpg);
}

.slider-area4 {
    background-image: url(../img/banner-04.jpg);
}

.slider-area5 {
    background-image: url(../img/banner-05.jpg);
}

.slider-area6 {
    background-image: url(../img/banner-06.jpg);
}

.slider-area7 {
    background-image: url(../img/banner-07.jpg);
}

.slider-area8 {
    background-image: url(../img/banner-08.jpg);
}

.slider-area9 {
    background-image: url(../img/banner-09.jpg);
}

.slider-area10 {
    background-image: url(../img/banner-10.jpg);
}


/* ==========================================================
   TEXTOS DOS SLIDES - BANNERS TOPO DO SITE
   ========================================================== */

.slider-title h1 {
    line-height: 26px;
    letter-spacing: 0;
    font-weight: 600;
    font-size: 18px;
    color: #fff;
}

.slider-title h2 {
    font-family: Lobster;
    line-height: 76px;
    letter-spacing: 0;
    font-weight: 400;
    font-size: 60px;
    color: #fff;
    text-transform: capitalize;
}

.slider-title h3 {
    line-height: 26px;
    letter-spacing: 0;
    font-weight: 600;
    font-size: 18px;
    color: #333;
}

.slider-title h4 {
    font-family: Lobster;
    line-height: 76px;
    letter-spacing: 0;
    font-weight: 400;
    font-size: 60px;
    color: #333;
    text-transform: capitalize;
}

.slider-title h1 span {
    color: #0C51AD;
}

.slider-title p {
    color: #fff;
    text-align: left;
    line-height: 30px;
    letter-spacing: 0;
    font-weight: 400;
    font-size: 16px;
    margin: 26px 0 50px;
}


/* ==========================================================
   IMAGEM / THUMB DO SLIDE - BANNERS TOPO DO SITE
   ========================================================== */

.slider-thumb img {
    width: 100%;
}

.slider-area.upper .slider-thumb {
    margin-left: -50px;
}


/* ==========================================================
   BOTÕES - BANNERS TOPO DO SITE
   ========================================================== */

.slider-button {
    display: inline-block;
    margin-right: 28px;
}

.slider-btn {
    display: inline-block;
}

.slider-button a {
    background-color: #0C51AD;
    font-family: Inter;
    color: #fff;
    text-decoration: none;
    text-align: center;
    letter-spacing: 0;
    font-weight: 600;
    font-size: 16px;
    border-radius: 30px;
    padding: 17px 30px;
    text-transform: capitalize;
}

.slider-btn a {
    font-family: Inter;
    background: #0C51AD;
    border: 1px solid #0C51AD;
    color: #fff;
    text-decoration: none;
    text-align: center;
    letter-spacing: 0;
    font-weight: 600;
    font-size: 16px;
    border-radius: 30px;
    padding: 17px 30px;
    text-transform: capitalize;
}

.slider-btn a:hover {
    background: #0E5CC7;
    color: #fff;
    border-color: #0E5CC7;
}

.slider-button a:hover {
    background: #FFD850;
}


/* ==========================================================
   SETAS DO OWL CAROUSEL - BANNERS TOPO DO SITE
   ========================================================== */

.owl-prev {
    position: absolute;
    left: 75px;
    top: 48%;
    transform: translateY(-50%);
    opacity: 1;
    transition: .3s;
}

.owl-next {
    position: absolute;
    right: 40px;
    top: 48%;
    transform: translateY(-50%);
    opacity: 1;
    transition: .3s;
}

.owl-next i,
.owl-prev i {
    background: rgba(0, 0, 0, 0.35);
    height: 100px;
    width: 100px;
    line-height: 100px;
    z-index: 1;
    color: #fff;
    border: 0;
    text-align: center;
    font-size: 30px;
    transition: .5s;
}

.owl-prev i:hover,
.owl-next i:hover {
    background: #fff;
    color: #333;
    width: 150px;
}

/* ==========================================================
   RESPONSIVIDADE - BANNERS TOPO DO SITE
   ========================================================== */

/* Tablet */
@media (max-width: 991px) {

    .slider-area1,
    .slider-area2,
    .slider-area3,
    .slider-area4,
    .slider-area5,
    .slider-area6,
    .slider-area7,
    .slider-area8,
    .slider-area9,
    .slider-area10 {
        max-height: none;
    }

    .slider-title h2,
    .slider-title h4 {
        font-size: 46px;
        line-height: 58px;
    }

    .owl-prev {
        left: 20px;
    }

    .owl-next {
        right: 20px;
    }

    .owl-next i,
    .owl-prev i {
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 24px;
    }

    .owl-prev i:hover,
    .owl-next i:hover {
        width: 60px;
    }
}


/* Mobile */
@media (max-width: 767px) {

    .slider-area1,
    .slider-area2,
    .slider-area3,
    .slider-area4,
    .slider-area5,
    .slider-area6,
    .slider-area7,
    .slider-area8,
    .slider-area9,
    .slider-area10 {
        aspect-ratio: auto;
        height: 260px;
        background-size: cover;
        background-position: center center;
    }

    /* Ajuste específico do banner IPTU */
    .slider-area5 {
        background-position: 35% center;
    }

    .slider-title h1,
    .slider-title h3 {
        font-size: 14px;
        line-height: 20px;
    }

    .slider-title h2,
    .slider-title h4 {
        font-size: 34px;
        line-height: 42px;
    }

    .slider-title p {
        font-size: 14px;
        line-height: 22px;
        margin: 15px 0 25px;
    }

    .slider-btn a,
    .slider-button a {
        font-size: 14px;
        padding: 12px 22px;
    }

    .owl-prev {
        left: 10px;
    }

    .owl-next {
        right: 10px;
    }

    .owl-next i,
    .owl-prev i {
        width: 42px;
        height: 42px;
        line-height: 42px;
        font-size: 20px;
    }

    .owl-prev i:hover,
    .owl-next i:hover {
        width: 42px;
    }
}


/* Celulares menores */
@media (max-width: 480px) {

    .slider-area1,
    .slider-area2,
    .slider-area3,
    .slider-area4,
    .slider-area5,
    .slider-area6,
    .slider-area7,
    .slider-area8,
    .slider-area9,
    .slider-area10 {
        height: 220px;
    }

    .slider-title h2,
    .slider-title h4 {
        font-size: 28px;
        line-height: 36px;
    }

    .slider-title h1,
    .slider-title h3 {
        font-size: 13px;
    }

    .owl-next i,
    .owl-prev i {
        width: 38px;
        height: 38px;
        line-height: 38px;
        font-size: 18px;
    }

    .owl-prev i:hover,
    .owl-next i:hover {
        width: 38px;
    }
}

/*--------------------------------------------------------------
# CSS FORMATAÇÃO DOS CONTROLES DE ACESSIBILIDADE - TOPO SITE
--------------------------------------------------------------*/
.cf-access-tools {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 3px;
  background: white;
  border: 1px solid #dce1e5;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}

.cf-access-tools button {
  width: 32px;
  height: 29px;
  border: 0;
  border-radius: 16px;
  background: transparent;
  color: var(--cf-blue);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s ease;
}

.cf-access-tools button:hover {
  background: var(--cf-blue);
  color: white;
}

/*--------------------------------------------------------------
# ACESSIBILIDADE - ESCALONAMENTO GLOBAL E CONTRASTE
--------------------------------------------------------------*/
html {
  font-size: 100%;
}

body.baixo-fonte {
  font-size: 90%;
}

body.medio-fonte {
  font-size: 100%;
}

body.alto-fonte {
  font-size: 110%;
}

body.alto-contraste,
body.alto-contraste * {
  background-color: #000 !important;
  color: #fff !important;
  border-color: #fff !important;
}

body.alto-contraste a {
  color: #fff !important;
  text-decoration: underline;
}

body.alto-contraste #logo {
  filter: brightness(3) contrast(100%);
}

/*<!-- ============================================================== -->
<!-- ICONES DE FOTOS CAPA DO SITE -->
<!-- ============================================================== -->*/

.icon-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* 06 colunas */
    gap: 30px; /* Espaçamento entre colunas e linhas */
    padding: 10px;
    justify-items: center;
}

.icon-grid a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.icon-grid img {
    width: 162px;
    height: 240px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.icon-grid a:hover img {
    transform: scale(1.2); /* Aumenta 20% ao passar o mouse */
}

/* Para tablets (máximo de 768px) - Reduz para 4 colunas */
@media (max-width: 768px) {
    .icon-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .icon-grid img {
        width: 120px;
        height: 120px;
    }
}

/* Para celulares (máximo de 480px) - Reduz para 2 colunas */
@media (max-width: 480px) {
    .icon-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .icon-grid img {
        width: 100px;
        height: 100px;
    }
}

/*--------------------------------------------------------------
# NOSSA CIDADE - TRANSPORTE CIDADÃO
--------------------------------------------------------------*/
.imagem-proporcional {
  max-width: 90%; /* ocupa até 90% da largura da tela */
  margin: 20px auto; /* centraliza na página */
  padding: 20px; /* margem interna uniforme */
  border: 1px solid #ccc; /* borda discreta */
  box-shadow: 0 0 10px rgba(0,0,0,0.1); /* sombra leve */
  background: #fff; /* fundo branco */
  display: flex; /* ativa flexbox */
  justify-content: center; /* centraliza horizontalmente */
  align-items: center; /* centraliza verticalmente */
}

.imagem-proporcional img {
  width: 100%; /* ocupa 100% do contêiner */
  height: auto; /* mantém a proporção natural */
  object-fit: contain; /* garante que a imagem se ajuste sem distorção */
  display: block; /* remove espaços extras */
}

/*================================
 <-- SEÇÃO PADRÃO PARA TEXTOS GERAIS DAS PÁGINAS -->
==================================*/
.secao-texto-geral {
  background-color: #f6f9fe; /* Fundo suave (pode trocar por branco se desejar) */
  padding: 60px 0;
  font-family: "Open Sans", sans-serif;
}

/* Títulos */
.secao-texto-geral .section-title {
  text-align: center;
  padding-bottom: 30px;
}

.secao-texto-geral .section-title h2 {
  font-size: 0.875em;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: #e7f1fd;
  color: #E0AF07;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
}

.secao-texto-geral .section-title h3 {
  margin: 15px 0 0 0;
  font-size: 2em;
  font-weight: 700;
}

.secao-texto-geral .section-title h3 span {
  color: #E0AF07;
}

.secao-texto-geral h4 {
  font-size: 1.4em;
  font-weight: 700;
  color: #E0AF07;
  margin: 30px 0 12px;
  text-align: left;
}

/* Texto principal */
.secao-texto-geral p {
  font-size: 1em;
  line-height: 1.8em;
  font-weight: 500;
  text-align: justify;
  margin-bottom: 18px;
}

/* Listas */
.secao-texto-geral ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.secao-texto-geral li {
  list-style-type: disc;
  margin-bottom: 8px;
}

/* ==========================================================
   BACKGROUND - FUNDO BLOCOS HOMEPAGE
========================================================== */
.section-branco {
  background-color: #FFFFFF;
  padding: 60px 0;
}

.section-azul-claro {
  background-color: #F6F9FE;
  padding: 60px 0;
}

/* =========================
POLÍTICA DE PRIVACIDADE (Bloco interno)
Compatível com páginas internas do padrão Agência New (BizLand/Bootstrap)
========================= */

.privacy-page {
  max-width: 100%;
  margin: 0 auto;
}

/* Reforço visual do título (sem quebrar o padrão do site) */
.pageTitle.privacy-page {
  padding: 18px 18px 10px 18px;
}

.pageTitle.privacy-page h1 {
  margin: 0 0 10px 0;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
}

.pageTitle.privacy-page p {
  margin: 0;
  line-height: 1.6;
}

/* Conteúdo */
.pageContent.privacy-page {
  padding: 0 18px 22px 18px;
}

/* Cards (seções) */
.privacy-card {
  background: #ffffff;
  border: 1px solid rgba(16, 110, 234, 0.15);
  border-radius: 10px;
  padding: 16px 16px;
  margin: 12px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.privacy-card h2 {
  margin: 0 0 10px 0;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
}

.privacy-card p {
  margin: 0 0 10px 0;
  line-height: 1.7;
}

.privacy-card p:last-child {
  margin-bottom: 0;
}

/* Listas */
.privacy-list {
  margin: 0 0 10px 0;
  padding-left: 18px;
}

.privacy-list li {
  margin: 6px 0;
  line-height: 1.65;
}

/* Nota final */
.privacy-note {
  margin: 14px 0 0 0;
  padding: 14px 16px;
  border-radius: 10px;
  background: rgba(16, 110, 234, 0.07);
  border: 1px solid rgba(16, 110, 234, 0.18);
  line-height: 1.7;
}

/* Responsivo */
@media (max-width: 991px) {
  .pageTitle.privacy-page {
    padding: 16px 14px 10px 14px;
  }

  .pageContent.privacy-page {
    padding: 0 14px 18px 14px;
  }

  .pageTitle.privacy-page h1 {
    font-size: 24px;
  }
}

@media (max-width: 575px) {
  .pageTitle.privacy-page h1 {
    font-size: 22px;
  }

  .privacy-card {
    padding: 14px 14px;
  }

  .privacy-card h2 {
    font-size: 17px;
  }
}

/* =========================
RODAPÉ – LAYOUT + BOTÃO PRIVACIDADE (CORRIGIDO)
========================= */

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  width: 100%;
}

/* Blocos — remove interferência do template */
.footer-left,
.footer-center,
.footer-right {
  flex: 0 0 auto;          /* NÃO divide espaço igual */
  width: auto !important;  /* Mata largura herdada */
}

/* Empurra centro para o meio real */
.footer-center {
  margin: 0 auto;
  text-align: center;
}

/* Mantém a logo colada à direita */
.footer-right {
  margin-left: auto;
  text-align: right;
}

.footer-right img {
  max-height: 36px;
}

/* Botão Política de Privacidade */
.btn-privacy {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: #106eea;
  border: 1px solid #106eea;
  background-color: transparent;
  transition: all 0.3s ease;
}

.btn-privacy:hover {
  background-color: #106eea;
  color: #ffffff;
  text-decoration: none;
}

/* =========================
RESPONSIVO
========================= */

@media (max-width: 767px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    margin: 5px 0;
    text-align: center;
  }

  .footer-right img {
    margin-top: 5px;
  }
}

/* =========================
ÍCONE BOTÕES GERAL LINHA DE MENUS
========================= */
.link-menu-icone {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icone-menu {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
}

/*--------------------------------------------------------------
# CSS Página Administração Municipal
--------------------------------------------------------------*/

.administracao-municipal {
  padding: 60px 0 70px;
  background: #f6f9fe;
}

/* Texto introdutório */
.administracao-intro {
  max-width: 900px;
  margin: 0 auto 40px;
  text-align: center;
}

.administracao-intro p {
  margin: 0;
  color: #555;
  font-size: 1em;
  line-height: 1.8;
}

/* Card */
.gestor-card {
  max-width: 440px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  border-bottom: 4px solid #F4C400;
  transition: all 0.3s ease;
}

.gestor-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* Área padronizada das fotografias */
.gestor-foto {
  width: 100%;
  height: 420px;
  overflow: hidden;
  background: #eee;
}

.gestor-foto img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s ease;
}

.gestor-card:hover .gestor-foto img {
  transform: scale(1.02);
}

/* Ajuste individual do enquadramento */
.gestor-card.vice .gestor-foto img {
  object-position: center 20%;
}

/* Informações */
.gestor-info {
  padding: 25px 25px 27px;
  text-align: center;
}

.gestor-info span {
  display: inline-block;
  margin-bottom: 9px;
  color: #B58C00;
  font-size: 0.78em;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.gestor-info h4 {
  margin: 0 0 8px;
  color: #222;
  font-size: 1.25em;
  line-height: 1.4;
  font-weight: 700;
}

.gestor-info p {
  margin: 0;
  color: #777;
  font-size: 0.9em;
}


/*--------------------------------------------------------------
# Responsivo - CSS Página Administração Municipal
--------------------------------------------------------------*/

@media (max-width: 991px) {

  .administracao-municipal {
    padding: 50px 0 60px;
  }

  .gestor-foto {
    height: 380px;
  }

}

@media (max-width: 767px) {

  .administracao-municipal {
    padding: 40px 0 50px;
  }

  .administracao-intro {
    margin-bottom: 30px;
    padding: 0 10px;
  }

  .administracao-intro p {
    font-size: 0.95em;
    line-height: 1.7;
  }

  .gestor-card {
    max-width: 400px;
  }

  .gestor-foto {
    height: 400px;
  }

}

@media (max-width: 480px) {

  .gestor-foto {
    height: 360px;
  }

  .gestor-info {
    padding: 22px 18px 24px;
  }

  .gestor-info h4 {
    font-size: 1.15em;
  }

}

/*================================
 <-- GRADE INSTITUCIONAL - SECRETARIAS, CONSELHOS E ÓRGÃOS -->
==================================*/
.grade-institucional {
  width: 100%;
  margin-top: 35px;
  padding: 30px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  box-shadow: 0 6px 22px rgba(0,0,0,.05);
}

.grade-institucional-topo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 25px;
}

.grade-institucional-titulo h4 {
  margin: 0 0 5px;
  color: #222;
  font-size: 1.3em;
}

.grade-institucional-titulo p {
  margin: 0;
  color: #777;
  font-size: .9em;
  line-height: 1.5;
  text-align: left;
  font-weight: 400;
}

.grade-institucional-busca {
  position: relative;
  width: 330px;
  flex: 0 0 330px;
}

.grade-institucional-busca i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #E0AF07;
  font-size: 1.2em;
}

.grade-institucional-busca input {
  width: 100%;
  height: 44px;
  padding: 0 18px 0 44px;
  background: #f8f9fa;
  border: 1px solid #e3e3e3;
  border-radius: 30px;
  outline: none;
  font-size: .9em;
  transition: .3s;
}

.grade-institucional-busca input:focus {
  background: #fff;
  border-color: #E0AF07;
  box-shadow: 0 0 0 3px rgba(224,175,7,.12);
}

.grade-institucional-aviso {
  display: inline-block;
  align-self: flex-start;
  margin: 2px 0;
  padding: 3px 8px;
  background: #fff8df;
  color: #9b7800;
  border-radius: 20px;
  font-size: .68em;
  font-weight: 700;
  text-transform: uppercase;
}

.grade-institucional-nome.destaque {
  display: block;
  font-size: 1.8em;
  line-height: 1.15;
  font-weight: 700;
  color: #222;
  margin-bottom: 8px;
}

/*================================
 <-- GRADE INSTITUCIONAL - CARDS -->
==================================*/
.grade-institucional-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.grade-institucional-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 92px;
  padding: 16px 45px 16px 16px;
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 12px;
  color: #333;
  text-decoration: none;
  overflow: hidden;
  transition: .25s ease;
}

.grade-institucional-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 3px;
  background: #E0AF07;
  border-radius: 0 4px 4px 0;
}

.grade-institucional-card:hover {
  transform: translateY(-3px);
  border-color: #E0AF07;
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
  color: #333;
}

.grade-institucional-icone {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff8df;
  color: #E0AF07;
  border-radius: 50%;
  font-size: 1.35em;
  transition: .25s;
}

.grade-institucional-card:hover .grade-institucional-icone {
  background: #E0AF07;
  color: #fff;
}

.grade-institucional-conteudo {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.grade-institucional-nome {
  color: #333;
  font-size: .95em;
  font-weight: 700;
  line-height: 1.35;
}

.grade-institucional-sigla {
  align-self: flex-start;
  padding: 2px 8px;
  background: #fff8df;
  color: #9b7800;
  border-radius: 20px;
  font-size: .72em;
  font-weight: 700;
}

.grade-institucional-seta {
  position: absolute;
  right: 16px;
  color: #bbb;
  font-size: 1.25em;
  transition: .25s;
}

.grade-institucional-card:hover .grade-institucional-seta {
  right: 13px;
  color: #E0AF07;
}


/*================================
 <-- GRADE INSTITUCIONAL - RESPONSIVO -->
==================================*/
@media (max-width: 991px) {
  .grade-institucional-grid { grid-template-columns: repeat(2, 1fr); }
  .grade-institucional-topo { align-items: flex-start; }
}

@media (max-width: 767px) {
  .grade-institucional { padding: 22px 18px; margin-top: 25px; }
  .grade-institucional-topo { flex-direction: column; }
  .grade-institucional-busca { width: 100%; flex: none; }
  .grade-institucional-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .grade-institucional-card { min-height: 86px; padding: 14px 42px 14px 14px; }
  .grade-institucional-icone { width: 42px; height: 42px; flex-basis: 42px; }
}

/* ================================
   LISTA DE TELEFONES
==================================*/
.lista-telefones {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: "Open Sans", sans-serif;
}

.lista-telefones li {
  display: grid;
  grid-template-columns: 350px minmax(0, 1fr);
  gap: 25px;
  align-items: center;
  padding: 12px;
  border-bottom: 1px solid #e5e5e5;
  line-height: 1.5;
}

.lista-telefones li strong {
  color: #222;
  font-weight: 600;
  line-height: 1.4;
}

.lista-telefones li:last-child {
  border-bottom: none;
}

/* ================================
   LISTA DE TELEFONES - RESPONSIVO
==================================*/
@media (max-width: 991px) {
  .lista-telefones li {
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .lista-telefones li {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 12px 8px;
  }

  .lista-telefones li strong {
    display: block;
    margin-bottom: 2px;
  }
}

/*================================
 <-- HINO MUNICIPAL -->
==================================*/
.hino-municipal-imagem {
  max-width: 900px;
  margin: 35px auto 0;
  padding: 15px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,.08);
  border-bottom: 4px solid #E0AF07;
}

.hino-municipal-imagem img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .hino-municipal-imagem {
    margin-top: 25px;
    padding: 8px;
  }
}