<style>
  @charset "UTF-8";

  @-ms-viewport {
    width: device-width;
    zoom: 1.0;
  }

  @-o-viewport {
    width: device-width;
    zoom: 1.0;
  }

  @viewport {
    width: device-width;
    zoom: 1.0;
  }

  html,
  button,
  input,
  optgroup,
  select,
  textarea {
    font-family: "Montserrat", sans-serif;
    color: #2C2C2C;
    outline-color: #123e67;
    -webkit-font-smoothing: antialiased;
  }

  body {
    word-wrap: normal !important;
    -webkit-hyphens: none !important;
    -ms-hyphens: none !important;
    hyphens: none !important;
    margin: 0 !important;
    font-family: "Montserrat", sans-serif !important;
  }

  html {
    scroll-behavior: smooth;
  }

  audio,
  canvas,
  iframe,
  img,
  svg,
  video {
    vertical-align: middle;
  }

  fieldset {
    border: 0;
    margin: 0;
    padding: 0;
  }

  textarea {
    resize: vertical;
    min-height: 3em;
  }

  img {
    max-width: 100%;
    height: auto;
    font-style: italic;
  }

  a {
    color: #2C2C2C;
    text-decoration: none;
    transition: all 0.2s ease-out;
  }

  a:hover {
    color: #C50045;
  }

  ul,
  ol {
    padding: 0;
    list-style-position: inside;
  }

  table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    margin-top: clamp(2em, 3vw, 3em);
  }

  table td,
  table th {
    border: 2px solid #123e67;
    font-size: clamp(12px, 3vw, 14px);
    padding: .7em .5em;
  }

  table th {
    font-family: "Montserrat", sans-serif;
  }

  table td {
    color: #C50045;
  }

  .pagination {
    display: flex;
    justify-content: center;
    margin-top: 2em;
  }

  .pagination ul {
    display: flex;
    list-style: none;
  }

  .pagination li {
    width: 50px;
    height: 50px;
    overflow: hidden;
    border-radius: 10px;
    margin: 0 .5em;
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: bold;
    color: #C50045;
    background-color: #EEE;
  }

  .pagination li .current {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #FFFFFF;
    background: #C50045;
  }

  .pagination li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #C50045;
  }

  .pagination li a:hover {
    color: #FFFFFF;
    background: #C50045;
  }

  .pagination li a:hover::after {
    color: #FFFFFF !important;
  }

  .pagination li a.next {
    position: relative;
    color: #C50045;
  }

  .pagination li a.next::after {
    content: '➜';
    position: absolute;
    color: currentColor;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 25px;
    line-height: .3;
  }

  .pagination li a.prev {
    position: relative;
    color: #C50045;
  }

  .pagination li a.prev::after {
    content: '➜';
    position: absolute;
    color: currentColor;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(180deg);
    font-size: 25px;
    line-height: .3;
  }

  .depoimento-card{
	  margin-bottom: 40px;
	  background-color: #f8f8f8;
	  padding: 30px;
	  border-radius: 10px;
  }
  .depoimento-content-author{
	  font-style: italic;
	  font-size: 15px;
  }
  .nome-autor{
	  font-weight: bold;
  }
  #depoimentos-title{
	color: #123e67;
	  margin-top: 0;
  }
  #btn-depoimentos{
  	font-size: 13px;
    font-weight: bold;
    background-color: #C50045;
    color: #FFFFFF;
	margin-top: 20px;
  }
  #btn-depoimento{
  	font-size: 14px;
    font-weight: bold;
    background-color: #C50045;
    color: #FFFFFF;
	margin-top: 20px;
  } 
  
  #title-depoimento{
  	color: #123e67;
  }
  .o-btn {
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    transition: all 0.2s ease-out;
    border: none;
    font-family: "Montserrat", sans-serif;
    margin: 0;
    padding: 0.87em 2.3em;
    text-align: center;
    border-radius: 20px;
  }

  .o-btn--primary {
    font-size: 16px;
    font-weight: bold;
    background-color: #C50045;
    color: #FFFFFF;
  }

  .o-btn--primary:hover {
    background-color: #C50045;
    color: #FFFFFF;
  }

  .o-btn--submit {
    width: 100%;
    background: #C50045;
    height: 50px;
    padding: 0;
    border-radius: 25px;
    font-weight: bold;
    color: #FFFFFF;
  }

  .o-btn--submit:hover {
    background-color: #C50045;
  }

  .o-btn--submit:disabled:hover {
    background: #C50045;
  }

  .o-btn__center {
    margin-top: 2em;
    display: flex;
    justify-content: center;
  }

  .o-grid-col {
    display: grid;
  }

  .o-grid-col--2 {
    grid-template-columns: repeat(2, 1fr);
  }

  @media (max-width: 767px) {
    .o-grid-col--2 {
      grid-template-columns: repeat(1, 1fr);
    }
  }

  .o-grid-col--5 {
    grid-template-columns: repeat(4, 1fr);
  }

  @media (min-width: 1199px) {
    .o-grid-col--5 {
      grid-template-columns: repeat(5, 1fr);
    }
  }

  @media (max-width: 1023px) {
    .o-grid-col--5 {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  @media (max-width: 767px) {
    .o-grid-col--5 {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 425px) {
    .o-grid-col--5 {
      grid-template-columns: repeat(1, 1fr);
    }
  }

  .o-grid-col--gap-1 {
    grid-gap: 10px;
  }

  .o-grid-col--gap-2 {
    grid-gap: 20px;
  }

  .o-grid-col--gap-3 {
    grid-gap: 30px;
  }

  .o-grid-col--gap-4 {
    grid-gap: 40px;
  }

  .o-wrapper {
    padding-left: 2%;
    padding-right: 2%;
    margin-left: auto;
    margin-right: auto;
  }

  .o-wrapper--1280 {
    max-width: 1280px;
  }

  .o-wrapper--1140 {
    max-width: 1140px;
  }

  .o-wrapper--790 {
    max-width: 790px;
  }

  .o-input {
    display: block;
    width: 100%;
    height: 50px;
    color: #123e67;
    font-size: 1.125rem;
    padding: .25em 2em;
    border: none;
    border-radius: 25px;
    line-height: 2;
    outline: none;
    box-sizing: border-box;
    background-color: #f8f8f8;
  }

  .o-input--textarea {
    min-height: 130px;
  }

  .o-input--accept {
    width: 20px;
    height: 20px;
    padding: 0;
    margin-right: 15px;
    display: inline-block;
    vertical-align: middle;
  }

  .o-input--btn {
    display: flex;
    flex-direction: column;
  }

  .o-ttl {
    line-height: 1.1;
    margin-bottom: .3em;
    margin-top: 0;
    font-family: "Montserrat", sans-serif;
  }

  .o-ttl--90 {
    font-size: clamp(45px, 7vw, 90px);
  }

  .o-ttl--50 {
    font-size: clamp(25px, 3vw, 50px);
  }

  .o-ttl--30 {
    font-size: clamp(20px, 3vw, 30px);
  }

  .o-ttl--22 {
    font-size: clamp(18px, 3vw, 22px);
  }

  .o-ttl--20 {
    font-size: clamp(16px, 3vw, 20px);
  }

  .o-ttl--18 {
    font-size: clamp(14px, 3vw, 18px);
  }

  .o-ttl--16 {
    font-size: clamp(13px, 3vw, 16px);
  }

  .o-ttl--white {
    color: #FFFFFF;
  }

  .o-ttl--center {
    text-align: center;
  }

  .o-ttl--xbold {
    font-weight: 800;
  }

  .o-ttl--bold {
    font-weight: bold;
  }

  .o-ttl--sbold {
    font-weight: 600;
  }
  .o-ttl--text-title {
	align-item: center;
  }
  .o-ttl--text-title h2 {
    font-size: clamp(25px, 3vw, 50px);
    font-weight: 600;
    color: #123e67;
    margin-bottom: .5em;
    margin-top: 0;
  }

  .o-ttl--text-title em {
    font-style: normal;
    padding-left: 5px;
    padding-right: 15px;
    color: #FFFFFF;
    background: #123e67;
    border-radius: 0 0 20px 0;
  }

  .o-ttl--text-title p {
    font-size: 16px;
    font-weight: 400;
  }

  .o-ttl--list ul {
    list-style: none;
  }

  .o-ttl--list ul li {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 1em;
  }

  .o-ttl--list ul li:last-child {
    margin-bottom: 0;
  }

  .o-ttl--list ul li::before {
    content: '●';
    color: #f4bf23;
    margin-right: 5px;
  }
  
  #text-contato {
    margin-left: auto;
    margin-right: auto;
    margin-top: -50px;
    width: 100%;
    max-width: 790px;
  }

  .c-footer {
    background: #FFFFFF;
    display: inline-block;
    width: 100%;
  }

  .c-footer__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2em 0;
  }

  @media (max-width: 1023px) {
    .c-footer__container {
      flex-direction: column;
      justify-content: center;
    }
  }

  .c-footer__logos {
    display: flex;
  }

  @media (max-width: 1199px) {
    .c-footer__logo {
      width: 175px;
    }
  }

  @media (max-width: 1023px) {
    .c-footer__logo {
      width: auto;
    }
  }

  .c-footer__logo:first-child {
    margin-right: 20px;
  }

  @media (min-width: 1199px) {
    .c-footer__logo:first-child {
      margin-right: 40px;
    }
  }

  @media (max-width: 1023px) {
    .c-footer__content {
      order: 3;
    }
  }

 .c-footer__copyright {
    margin: 0;
    font-size: 13px;
    margin: 1em 0 !important;
    display: inline-block;
    text-align: center;
    width: 100%;
}

.c-footer__copyright img {
    position: relative;
    top: 0;
    width: 20px;
    height: 30px;
}
	

  @media (max-width: 1023px) {
    .c-footer .c-share {
      order: 2;
      margin: 1em 0;
    }
  }

 .c-menu.is-active .c-menu__container { right: 0; } @media (max-width: 1199px) { .c-menu__container { width: 320px; height: 100vh; overflow: auto; background: #123e67; position: fixed; top: 0; right: -100%; z-index: 99999; transition: all 0.2s ease-out; padding: 1.5em; box-sizing: border-box; } } .c-menu__close { width: 30px; height: 30px; position: relative; cursor: pointer; margin-left: auto; margin-bottom: 2em; display: none; } @media (max-width: 1199px) { .c-menu__close { display: flex; } } .c-menu__close::after, .c-menu__close::before { content: ''; width: 100%; height: 3px; border-radius: 5px; background: #FFFFFF; position: absolute; left: 0; } .c-menu__close::after { top: 50%; transform: rotate(-45deg) translateY(-50%); } .c-menu__close::before { top: 50%; transform: rotate(45deg) translateY(-50%); } .c-menu__hamburguer { width: 35px; height: 23px; display: none; align-items: center; position: relative; cursor: pointer; } @media (max-width: 1199px) { .c-menu__hamburguer { display: flex; } } .c-menu__hamburguer span { position: relative; width: 100%; padding: 1.5px 0; } .c-menu__hamburguer span::after { content: ''; width: 100%; height: 3px; border-radius: 5px; transition: all 0.2s ease-out; background: #2C2C2C; position: absolute; left: 0; top: 0; } .c-menu__hamburguer::after, .c-menu__hamburguer::before { content: ''; width: 100%; height: 3px; border-radius: 5px; background: #2C2C2C; position: absolute; left: 0; } .c-menu__hamburguer::after { bottom: 0; } .c-menu__hamburguer::before { top: 0; } .c-menu__hamburguer:hover span::after { width: 80%; } .c-menu__content { list-style: none; margin: 0; display: flex; align-items: center; } @media (max-width: 1199px) { .c-menu__content { flex-direction: column; align-items: flex-start; } } .c-menu__current { color: #C50045 !important; } .c-menu__current::after { opacity: 1 !important; } .c-menu__item { margin: 0 1.5em; position: relative; } @media (max-width: 1199px) { .c-menu__item { margin: .5em 0; } } .c-menu__item>a { font-family: "Montserrat", sans-serif; font-size: 16px; font-weight: 600; color: #2C2C2C; position: relative; padding: 35.5px 0; } @media (max-width: 1199px) { .c-menu__item>a { font-size: 20px !important; padding: 0 !important; padding-left: 1em !important; color: #FFFFFF !important; } } .c-menu__item>a::after { content: ''; width: 100%; height: 3px; border-radius: 5px; background: #C50045; transition: all 0.2s ease-out; opacity: 0; position: absolute; bottom: 28px; left: 0; } @media (max-width: 1199px) { .c-menu__item>a::after { bottom: 0 !important; width: 3px; height: 100%; } } .c-menu__item>a:hover { color: #C50045; } .c-menu__item>a:hover::after { opacity: 1; } .c-menu__item:hover .c-menu__submenu { height: 260px; overflow: visible; } @media (max-width: 1199px) { .c-menu__item:hover .c-menu__submenu { height: auto; } } .c-menu__submenu { width: 1140px; position: absolute; left: -300%; transform: translate(-28%, 15%); z-index: 9999; border-radius: 0 0 15px 15px; background-color: #f4bf23; transition: all 0.2s ease-out; height: 0; overflow: hidden; } @media (max-width: 1199px) { .c-menu__submenu { width: 100%; padding-left: 1em; position: relative; transform: unset !important; height: auto; left: 0; bottom: 0; padding: 0; } } .c-menu__submenu::before { content: ''; width: 22px; height: 22px; transform: rotate(45deg) translateX(-6px); background: #f4bf23; position: absolute; top: -7px; left: 53%; z-index: 999; } @media (max-width: 1199px) { .c-menu__submenu::before { content: unset; } } .c-menu__submenu-container { padding: 2em 4em; display: flex; } @media (max-width: 1199px) { .c-menu__submenu-container { padding: 1em 3em; } } .c-menu__submenu a { position: relative; font-weight: 600; } .c-menu__submenu a::after { content: ''; width: 100%; height: 3px; border-radius: 5px; background: #C50045; transition: all 0.2s ease-out; opacity: 0; position: absolute; bottom: -10px; left: 0; } .c-menu__submenu a:hover { color: #C50045; } .c-menu__submenu a:hover::after { opacity: 1; } .c-menu__submenu ul { margin-right: 4em; list-style: none; } .c-menu__submenu ul li { width: 162px; margin: 20px 0; } .c-menu__submenu ul li:first-child { margin-top: 0; } .c-menu__submenu ul li:last-child { margin-bottom: 0; } .c-menu__text { padding-left: 4em; border-left: 1px solid rgba(33, 33, 33, 0.14); } @media (max-width: 1199px) { .c-menu__text { display: none; } } .c-menu__text p { margin: 0; font-weight: 500; font-size: 16px; } .c-menu__text a { font-size: 22px; font-weight: 600; margin-top: 1em; padding-right: 30px; color: #C50045; display: inline-flex; } .c-menu__text a::before { content: url("../../library/images/arrow-right.svg"); margin-left: 10px; position: absolute; right: 0; }

  .c-header {
    transition: all 0.2s ease-out;
    background: #FFFFFF;
  }

  .c-header.is-active {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 9999;
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.2);
  }

  .c-header.is-active .c-header__logo img {
    max-width: 70%;
  }

  .c-header.is-active .c-menu__item>a {
    padding: 25.5px 0;
  }

  .c-header.is-active .c-menu__item>a::after {
    bottom: 22px;
  }

  .c-header.is-active .c-menu__submenu {
    transform: translate(-28%, 11%);
  }

  .c-header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .c-header__logo {
    margin: 0.75em 0;
  }

  .c-header__logo img {
    transition: all 0.2s ease-out;
  }

		/* O slider cobre toda a área */
	.c-banner-slide{
		position: relative;
		width: 100%;
		height: 600px;
		overflow: hidden;
	}

	/* SLIDES (só as imagens) */
	.c-banner__slide {
		width: 100%;
		height: 600px;
		background-size: cover;
		background-repeat: no-repeat;
		background-position: center;
	}

	/* CONTEÚDO FIXO */
	.c-banner__content-fixed {
		position: absolute;
		top: 0;
		left: 0;
		width: 45%;
		height: 100%;
		z-index: 2;
		display: flex;
		align-items: center;
		padding-left: 40px;

	}

	@media (max-width: 767px) {
    .c-banner__content-fixed {
        width: 100%;
        height: 100%;   /* <-- ESSENCIAL */
        padding: 20px;  /* melhora o layout */
    }
}

	.c-banner__content-fixed::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 10;
		display: flex;
		align-items: center;
		padding-left: 40px;
		background: #123e67de; 
		opacity: .7;

	}
	

	/* Ajuste do texto dentro da faixa */
	.c-banner__content-fixed .o-wrapper {
		position: relative;
		z-index: 20;
	}

	 

  .c-banner {
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    position: relative;
  }

  .c-banner::before {
    content: '';
    width: 50%;
    height: 100%;
    background: #123e67de!important;
    opacity: .7;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
  }

  @media (max-width: 767px) {
    .c-banner::before {
      width: 100%;
    }
  }

  .c-banner--home {
    height: 600px;
  }

  @media (max-width: 1023px) {
    .c-banner--home {
      height: 400px;
    }
  }

  .c-banner--page {
    height: 400px;
  }

  .c-banner__container {
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 2;
  }

  .c-banner__container .o-wrapper {
    width: 100%;
  }

  .c-home__container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 40px;
  }

  @media (max-width: 767px) {
    .c-home__container {
      grid-template-columns: repeat(1, 1fr);
    }
  }

  .c-home__item {
    border-radius: 25px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.2s ease-out;
  }

  .c-home__item img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .c-home__item:hover .c-home__title {
    height: 100%;
  }

  .c-home__item:hover .c-home__title h3 {
    margin-bottom: .75em;
  }

  .c-home__item:hover .c-home__btn {
    height: auto;
    overflow: visible;
    opacity: 1;
    padding: 0.87em 2.3em;
    border: 3px solid transparent;
  }

  .c-home__item:hover .c-home__btn:hover {
    border-color: #C50045;
  }

  .c-home__title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100px;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background: rgba(18, 62, 103, 0.74);
    transition: all 0.2s ease-out;
  }

  .c-home__btn {
    height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0;
    border: 0;
  }

  .c-section {
    padding-top: clamp(2em, 3vw, 4em);
    padding-bottom: clamp(2em, 3vw, 4em);
  }

  .c-section--detail {
    position: relative;
  }

  /*.c-section--detail::before,
  .c-section--detail::after {
    content: '';
    background-position: initial !important;
    background-repeat: repeat-y !important;
    background-size: 100% !important;
    position: absolute;
    z-index: -1;
    top: 0;
  } */

  @media (max-width: 1024px) {

    .c-section--detail::before,
    .c-section--detail::after {
      content: unset;
    }
  }

  .c-section--detail::before {
    left: 0;
    background: url("https://www.centromais.com.br/wp-content/themes/bones/library/images/xsection-left.png.pagespeed.ic.JI4SSnUaGk.png");
    width: 210px;
    height: 100%;
  }

  @media (max-width: 1199px) {
    .c-section--detail::before {
      width: 160px;
    }
  }

  .c-section--detail::after {
    right: 0;
    background: url("https://www.centromais.com.br/wp-content/themes/bones/library/images/xsection-right.png.pagespeed.ic.hDJfPK__Dd.png");
    width: 155px;
    height: 100%;
  }

  @media (max-width: 1199px) {
    .c-section--detail::after {
      width: 95px;
    }
  }

  .c-section--gray {
    background: #f8f8f8;
  }

  .c-section--green {
    background: #123e67;
  }

  .c-block__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  @media (max-width: 1023px) {
    .c-block__container {
      flex-direction: column;
    }
  }

  .c-block__text {
    width: 570px;
    max-width: 100%;
  }

  @media (max-width: 1024px) {
    .c-block__text {
      width: 470px;
    }
  }

  @media (max-width: 1023px) {
    .c-block__text {
      width: 500px;
    }
  }

  .c-block__img {
    width: 539px;
    max-width: 100%;
    border-radius: 20px;
    overflow: hidden;
  }

  @media (max-width: 1024px) {
    .c-block__img {
      width: 439px;
    }
  }

  @media (max-width: 1023px) {
    .c-block__img {
      width: 500px;
    }
  }

  .c-block__img--left {
    transform: translateX(-7%);
  }

  @media (max-width: 1199px) {
    .c-block__img--left {
      transform: unset;
    }
  }

  .c-block__img--right {
    transform: translateX(7%);
  }

  @media (max-width: 1199px) {
    .c-block__img--right {
      transform: unset;
    }
  }

  .c-block__img img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .c-center__container {
    margin: 3em 0;
    z-index: 2;
    position: relative;
  }

  .c-center__item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.2);
    background: #FFFFFF;
  }

  .c-center__item a {
    width: 100%;
    height: 100%;
    display: block;
  }

  .c-center__item a:hover {
    background: #C50045;
    color: #FFFFFF;
  }

  .c-center__item a:hover .c-icon path {
    fill: #FFFFFF;
  }

  .c-center__item h3 {
    transition: all 0.2s ease-out;
  }

  .c-center__content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 2em .5em;
  }

  .c-center__content .c-icon {
    margin-bottom: 1em;
    transition: all 0.2s ease-out;
  }

  .c-center__text {
    background: #FFFFFF;
    padding-left: 20px;
    padding-top: 20px;
    border-radius: 10px;
  }

  .c-gallery {
    margin-top: 3em;
  }

  .c-gallery__item {
    border-radius: 15px;
    overflow: hidden;
  }

  .c-pole__container {
    margin-top: 2em;
    z-index: 2;
    position: relative;
  }

  .c-pole__item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.2);
    background: #FFFFFF;
    height: 247px;
  }

  .c-pole__content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 2em 1.5em;
    height: 183px;
  }

  .c-pole__content .c-icon {
    margin-bottom: 1em;
    transition: all 0.2s ease-out;
  }
  
  

  .c-map--secondary .c-map__iframe {
    margin-bottom: 2em;
  }

  .c-map__iframe {
    margin-top: 2em;
    margin-bottom: 6em;
  }

  .c-map__iframe iframe {
    width: 100%;
    height: 400px;
  }

  .c-map__container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
    margin-top: 3em;
  }

  @media (max-width: 1023px) {
    .c-map__container {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  @media (max-width: 767px) {
    .c-map__container {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 425px) {
    .c-map__container {
      grid-template-columns: repeat(1, 1fr);
    }
  }

  .c-map__item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.2s ease-out;
  }

  .c-map__item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }

  .c-map__item a:hover .c-map__overlay {
    width: 100%;
    height: 100%;
    background: rgba(224, 0, 74, 0.5);
  }

  .c-map__overlay {
    position: absolute;
    z-index: 2;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background: #C50045;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-out;
  }

  .c-map__overlay span {
    font-size: clamp(20px, 3vw, 30px);
    color: #FFFFFF;
    font-weight: bold;
  }

  .c-show-hide__container {
    margin-top: 2em;
    position: relative;
    z-index: 2;
  }

  .c-show-hide__item {
    background: #FFFFFF;
    margin-bottom: 1em;
    border-radius: 15px;
    padding: 1.5em 3.5em 1.5em 1.5em;
    position: relative;
  }

  .c-show-hide__item:last-child {
    margin-bottom: 0;
  }

  .c-show-hide__item h3 {
    margin: 0;
  }

  .c-show-hide__item--secondary {
    background: #f8f8f8;
  }

  .c-show-hide__text {
    display: none;
  }

  .c-show-hide__text p {
    margin-top: 2em;
    font-size: 14px;
    font-weight: 500;
  }

  .c-show-hide__text a {
    color: #123e67;
    text-decoration: underline;
  }

  .c-show-hide__text a:hover {
    color: #C50045;
  }

  .c-show-hide__btn {
    position: absolute;
    right: 1.5em;
    top: 1.5em;
    width: 20px;
    height: 20px;
    z-index: 9;
    cursor: pointer;
    transition: all 0.2s ease-out;
  }

  .c-show-hide__btn.is-active::before {
    content: '';
    transform: translateX(-50%) rotate(90deg);
  }

  .c-show-hide__btn::after {
    content: '';
    width: 100%;
    height: 3.5px;
    border-radius: 5px;
    background: #C50045;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    position: absolute;
    transition: all 0.2s ease-out;
  }

  .c-show-hide__btn::before {
    content: '';
    width: 3.5px;
    height: 100%;
    border-radius: 5px;
    background: #C50045;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    transition: all 0.2s ease-out;
  }

  .post-type-archive-faq .c-footer .c-show-hide {
    display: none;
  }

  .c-share {
    display: flex;
  }

  .c-share__item:first-child {
    margin-right: 20px;
  }

  .c-share__item a {
    color: #123e67;
  }

  .c-share__item a:hover {
    color: #C50045;
  }

  @media print {

    *,
    *::before,
    *::after {
      background: transparent !important;
      color: #000 !important;
      box-shadow: none !important;
      text-shadow: none !important;
    }

    a,
    a:visited {
      text-decoration: underline;
    }

    a[href]::after {
      content: " (" attr(href) ")";
    }

    a[title]::after {
      content: " (" attr(title) ")";
    }

    a[href^="javascript:"]::after,
    a[href^="#"]::after {
      content: "";
    }

    pre,
    blockquote {
      border: 1px solid #999;
      page-break-inside: avoid;
    }

    thead {
      display: table-header-group;
    }

    tr,
    img {
      page-break-inside: avoid;
    }

    img {
      max-width: 100% !important;
    }

    p,
    h2,
    h3 {
      orphans: 3;
      widows: 3;
    }

    h2,
    h3 {
      page-break-after: avoid;
    }

    .c-header *,
    .c-nav,
    .c-footer,
    aside {
      display: none !important;
    }

    .c-logo {
      display: block !important;
    }

    body,
    article,
    main {
      width: 100%;
      margin: 0;
      padding: 0;
    }
  }

  .swiper-container {
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
  }

  .swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
  }

  .swiper-slide {
    flex-shrink: 0;
    width: 100%;
    position: relative;
    transition-property: transform;
  }

  .swiper-buttons {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 1em;
  }

  .swiper-button {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    margin: 0 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #EEE;
    color: #C50045;
    transition: all 0.2s ease-out;
  }

  .swiper-button:hover {
    background: #C50045;
    color: #FFFFFF;
  }

  .swiper-button-disabled {
    opacity: .35;
    pointer-events: none;
  }

  #fancybox-buttons {
    display: none;
  }

  .acceptance .wpcf7-list-item {
    margin: 0;
  }

  .acceptance label a {
    color: #123e67;
    text-decoration: underline;
  }

  .acceptance label a:hover {
    color: #C50045;
  }

  .wpcf7-spinner {
    background-color: #FFFFFF !important;
    margin: 1em auto;
    display: flex;
  }

  .wpcf7-spinner::before {
    content: '';
    background-color: transparent !important;
    top: unset !important;
    position: relative !important;
    left: unset !important;
    width: 16px !important;
    height: 16px !important;
    border: 4px solid #C50045 !important;
    border-color: #C50045 #C50045 transparent transparent !important;
    -webkit-animation: spin 1.2s linear infinite !important;
    animation: spin 1.2s linear infinite !important;
    transform-origin: unset !important;
  }

  p.c-footer__logo.apoio:before {
    content: 'Apoio';
    margin: 0 1em 0 3em;
    position: relative;
    top: -14px;
  }

  p.c-footer__logo {
    margin: 0 0.5em;
  }

  

  p.c-footer__logo.centromais img {
    width: 200px;
    height: auto;
  }

  p.c-footer__logo.prefeitura img {
    width: 250px;
    height: auto;
  }

  .page-template-page-projetos-de-lei .c-show-hide {
    display: none;
  }

  .page-id-16 .c-show-hide {
    display: none;
  }

  .c-gallery__item p {
    font-size: 13px;
  }

  .page-template-page-sobre-o-centro .c-gallery__item img {
    width: 100%;
    height: 190px;
    object-fit: cover;
  }

  .mapa-embed iframe {
    width: 900px;
    height: 600px;
    max-width: 100%;
  }

  .c-map__item h2 {
    font-size: 18px;
  }

  .page-template-default .c-banner__container h1 {
    font-size: 50px !important;
    width: 640px;
    max-width: 100%;
  }

  .wpcf7 form .wpcf7-response-output {
    text-align: center;
  }



  @media only screen and (max-width: 667px) {


    .c-footer__logos {
      display: inline-block;
      text-align: center;
    }

    p.c-footer__logo {
      margin: 0 0.5em 1.5em;
    }

    p.c-footer__logo.apoio:before {
      margin: 2em auto 0;
      display: inline-block;
      width: 100%;
      text-align: center;
    }

    .c-banner--page {
      height: auto;
      min-height: 350px;
      display: flex;
      align-items: center;
      text-align: center;
    }

    .c-banner__container {
      text-align: center;
    }

    .o-wrapper {
      padding: 0 1.5em;
    }

    .c-block__container.reverse-mobile {
      flex-direction: column-reverse;
    }

    .mercado-publico .c-block__container {
      flex-direction: column-reverse;
    }

    .c-footer__logos {
      width: 100%;
      padding: 0 1em !important;
      text-align: center;
      flex-direction: column;
    }

    #linha-vertical {
      color: transparent;
      transform: scale(0);
    }

    #linha-horizontal {
      transform: scale(1.3);
      width: 275px !important;
    }

    .c-footer__content {
      display: none;
    }

    .c-shared {
      margin: -9em 15em !important;
    }

    .c-footer__content {
      order: 3;
      flex-direction: column;
    }

    .c-share {
      order: 1;
      margin: -9em 17em !important;
    }
  }

  @media only screen and (max-width: 740px) {
    #linha-horizontal {
      width: 85%  !important;
    }
  }



  @media only screen and (max-width: 896px) {
    #linha-horizontal {
       width: 85% !important;
    }
  }

  @media only screen and (max-width: 844) {
    #linha-horizontal {
      width: 85%  !important;
    }
  }

  

    /*.c-footer .c-share {
  order: 2;
  margin: 0em 0 !important;
}
.c-footer__logos {
  padding-left: 25px !important;
}*/
  }
</style>