@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap");
.site-header {
  background-color: #fff;
}
.site-header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}
.site-header .logo img {
  width: 220px;
  padding-top: 5px;
}
.site-header .menu-wrapper {
  display: flex;
  justify-content: flex-end;
  flex: 1;
}
.site-header .main-menu ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}
.site-header .main-menu ul li {
  position: relative;
}
.site-header .main-menu ul li a {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0;
  color: #000;
  text-decoration: none;
  padding: 0.5rem 0;
  display: inline-block;
  transition: color 0.3s ease;
}
.site-header .main-menu ul li a:hover {
  color: #1e3a8a;
}
.site-header .main-menu ul li ul.sub-menu {
  position: absolute;
  top: 28px;
  left: 0;
  width: 159px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #ccc;
  padding: 0.5rem 0;
  display: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 99;
}
.site-header .main-menu ul li ul.sub-menu li a {
  color: #636363;
  padding: 0.5rem 1rem;
  display: block;
  font-weight: 400;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}
.site-header .main-menu ul li ul.sub-menu li a:hover {
  background-color: #f3f3f3;
  color: #1e3a8a;
}
.site-header .main-menu ul li:hover > ul.sub-menu {
  display: block;
  animation: dropdownFade 0.3s ease forwards;
}
.site-header .menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}
.site-header .menu-toggle .hamburger {
  width: 25px;
  height: 3px;
  background: #000;
  position: relative;
  display: block;
  border-radius: 2px;
  transition: all 0.3s ease;
  margin-right: 10px;
}
.site-header .menu-toggle .hamburger::before, .site-header .menu-toggle .hamburger::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 3px;
  background: #000;
  border-radius: 2px;
  transition: all 0.3s ease;
  left: 0;
}
.site-header .menu-toggle .hamburger::before {
  top: -8px;
}
.site-header .menu-toggle .hamburger::after {
  top: 8px;
}
.site-header .menu-toggle.open .hamburger {
  background: transparent;
}
.site-header .menu-toggle.open .hamburger::before {
  transform: rotate(45deg);
  top: 0;
}
.site-header .menu-toggle.open .hamburger::after {
  transform: rotate(-45deg);
  top: 0;
}

@keyframes dropdownFade {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .menu-toggle {
    display: block !important;
  }
  .site-header .logo img {
    width: 220px;
    padding-left: 15px !important;
  }
  .main-menu {
    display: none;
    width: 100%;
    background: #fff;
    position: absolute;
    top: 85px;
    left: 0;
    padding: 1rem 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 999;
    padding-left: 30px;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
  }
  .main-menu.open {
    max-height: 600px;
  }
  .main-menu .menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding-left: 0;
  }
  .main-menu .menu > li {
    width: 100%;
    position: relative;
  }
  .main-menu .menu > li > a {
    width: 100%;
    padding: 1rem;
    display: block;
    position: relative;
    padding-right: 40px;
  }
  .main-menu .menu > li.menu-item-has-children > a::after {
    font-family: "Font Awesome 6 Free";
    content: "\f078";
    font-weight: 900;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    pointer-events: none;
    transition: transform 0.3s ease;
  }
  .main-menu .menu > li.open > a::after {
    transform: translateY(-50%) rotate(180deg);
  }
  .main-menu .menu > li ul.sub-menu {
    display: none;
    flex-direction: column;
    padding-left: 20px;
    width: 100%;
  }
  .main-menu .menu > li.open ul.sub-menu {
    display: flex;
  }
  .main-menu.open {
    display: block;
  }
  .main-menu.open .menu {
    display: flex;
  }
}
.carousel-section.artigos-carousel {
  background-color: #004997;
  padding: 3.9rem 0 0rem;
  overflow-x: hidden;
}
.carousel-section.artigos-carousel .artigos-arrows-mobile {
  display: none;
}
.carousel-section.artigos-carousel .container {
  position: relative;
}
.carousel-section.artigos-carousel .carousel-swiper-wrapper {
  position: relative;
}
.carousel-section.artigos-carousel .carousel-swiper-wrapper .swiper-button-prev.artigos-prev,
.carousel-section.artigos-carousel .carousel-swiper-wrapper .swiper-button-next.artigos-next {
  color: #fff;
  border: 3.5px solid #fff;
  border-radius: 50%;
  width: 33px;
  height: 33px;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 15;
  position: absolute;
}
.carousel-section.artigos-carousel .carousel-swiper-wrapper .swiper-button-prev.artigos-prev::after,
.carousel-section.artigos-carousel .carousel-swiper-wrapper .swiper-button-next.artigos-next::after {
  font-size: 18px;
  font-weight: bolder;
}
.carousel-section.artigos-carousel .carousel-swiper-wrapper .artigos-prev::after {
  margin-left: -4px;
}
.carousel-section.artigos-carousel .carousel-swiper-wrapper .swiper-button-prev.artigos-prev {
  left: 0px;
}
.carousel-section.artigos-carousel .carousel-swiper-wrapper .swiper-button-next.artigos-next {
  right: 0px;
}
.carousel-section.artigos-carousel .swiper-container {
  width: 100%;
  overflow: hidden;
}
.carousel-section.artigos-carousel .swiper-slide {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0;
  box-sizing: border-box;
}
.carousel-section.artigos-carousel .carousel-item {
  display: flex;
  flex-direction: row;
  max-width: 1180px;
  width: 100%;
  background-color: #2461A5;
  border-radius: 15px;
  padding: 50px 30px;
  color: #fff;
  overflow: hidden;
  margin-bottom: 2rem;
}
.carousel-section.artigos-carousel .carousel-item .carousel-image {
  flex: 1;
  min-height: 300px;
  background-size: cover;
  border-radius: 10px;
}
.carousel-section.artigos-carousel .carousel-item .carousel-content {
  flex: 1;
  padding: 0 0 0 4rem;
}
.carousel-section.artigos-carousel .carousel-item .carousel-content .carousel-title {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 37px;
  margin-top: 0;
}
.carousel-section.artigos-carousel .carousel-item .carousel-content .carousel-excerpt.strong {
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 1rem;
}
.carousel-section.artigos-carousel .carousel-item .carousel-content .carousel-excerpt {
  font-weight: 300;
  font-size: 15px;
  line-height: 1.2;
  margin-bottom: 2rem;
}
.carousel-section.artigos-carousel .carousel-item .carousel-content .carousel-button {
  display: inline-block;
  background-color: #004997;
  color: #fff;
  padding: 1rem 2.7rem;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}
.carousel-section.artigos-carousel .carousel-item .carousel-content .carousel-button:hover {
  background-color: #fff;
  color: #004997;
}
.carousel-section.artigos-carousel .carousel-item .carousel-content .carousel-button .arrow {
  margin-left: 5px;
}
.carousel-section.artigos-carousel .artigos-pagination {
  display: none;
}
@media (max-width: 768px) {
  .carousel-section.artigos-carousel {
    padding-top: 1rem;
  }
  .carousel-section.artigos-carousel .artigos-arrows-mobile {
    display: flex;
    padding-bottom: 10px;
    margin-left: 17px;
  }
  .carousel-section.artigos-carousel .artigos-arrows-mobile img {
    width: 35px;
    padding-right: 10px;
  }
  .carousel-section.artigos-carousel .carousel-item {
    flex-direction: column;
    padding: 16px;
  }
  .carousel-section.artigos-carousel .carousel-content {
    padding: 0 !important;
  }
  .carousel-section.artigos-carousel h2.carousel-title {
    padding-top: 25px;
  }
  .carousel-section.artigos-carousel .carousel-swiper-wrapper .swiper-button-prev.artigos-prev,
  .carousel-section.artigos-carousel .carousel-swiper-wrapper .swiper-button-next.artigos-next {
    display: none !important;
  }
  .carousel-section.artigos-carousel .artigos-pagination {
    display: flex !important;
    overflow-x: auto;
    overflow-y: hidden;
    justify-content: flex-start;
    padding: 0.5rem 0 1.5rem;
    gap: 6px;
    max-width: 100%;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .carousel-section.artigos-carousel .artigos-pagination::-webkit-scrollbar {
    display: none;
  }
  .carousel-section.artigos-carousel .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ffffff;
    opacity: 0.4;
    border-radius: 50%;
    transition: opacity 0.3s;
    flex: 0 0 auto;
  }
  .carousel-section.artigos-carousel .swiper-pagination-bullet-active {
    opacity: 1;
    background: #DAA50A;
  }
}
@media (min-width: 769px) {
  .carousel-section.artigos-carousel .artigos-pagination {
    display: none !important;
  }
}

.section-box--entrevistas {
  padding: 1.5rem 1rem;
  background-color: #F3F3F3;
  padding-bottom: 4.8rem;
}
.section-box--entrevistas .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.section-box--entrevistas .swiper-container {
  width: 100%;
  overflow: hidden;
}
.section-box--entrevistas .swiper-slide {
  display: flex;
  justify-content: center;
}
.section-box--entrevistas .card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  max-width: 500px;
}
.section-box--entrevistas .card .card-image {
  width: 100%;
  height: 305px;
}
.section-box--entrevistas .card .card-image img.fixed-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px 10px 0 0;
}
.section-box--entrevistas .card .card-content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.section-box--entrevistas .card .card-content .post-date {
  font-size: 0.9rem;
  color: #004997;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.section-box--entrevistas .card .card-content h3 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
  color: #000;
}
.section-box--entrevistas .card .card-content .excerpt {
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
  margin-bottom: 0.5rem;
  flex-grow: 1;
}
.section-box--entrevistas .card .card-content .read-more {
  color: #004997;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
}
.section-box--entrevistas .card .card-content .read-more:hover {
  text-decoration: underline;
}
.section-box--entrevistas .btn {
  color: #fff;
  background: #004997;
  padding: 1rem 2rem;
  border-radius: 10px;
  text-decoration: none;
}
.section-box--entrevistas .btn i {
  margin-left: 0.5rem;
  margin-top: 5px;
}
.section-box--entrevistas .entrevistas-pagination {
  display: none;
}
@media (max-width: 768px) {
  .section-box--entrevistas {
    padding-bottom: 6rem !important;
  }
  .section-box--entrevistas .swiper-container {
    overflow: hidden;
  }
  .section-box--entrevistas .section-header {
    display: block !important;
    align-items: center !important;
    margin-bottom: 1.1rem !important;
  }
  .section-box--entrevistas .btn {
    padding: 0.5rem 0.8rem !important;
    margin-top: -10px !important;
  }
  .section-box--entrevistas .swiper-wrapper {
    display: flex !important;
  }
  .section-box--entrevistas .swiper-slide {
    width: 100% !important;
  }
  .section-box--entrevistas .entrevistas-pagination {
    display: flex !important;
    justify-content: center;
    margin-top: 1rem;
    gap: 8px;
  }
  .section-box--entrevistas .swiper-container.entrevistas-swiper.swiper-initialized.swiper-horizontal.swiper-backface-hidden {
    margin-top: 25px !important;
  }
  .section-box--entrevistas .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ccc;
    opacity: 0.5;
    border-radius: 50%;
    transition: opacity 0.3s;
  }
  .section-box--entrevistas .swiper-pagination-bullet-active {
    background: #DAA50A;
    opacity: 1;
  }
  .section-box--entrevistas .swiper-pagination.entrevistas-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: auto !important;
  }
  .section-box--entrevistas .entrevistas-pagination .swiper-pagination-bullet-active {
    background-color: #1e3a8a !important;
  }
}
@media (min-width: 769px) {
  .section-box--entrevistas .swiper-wrapper {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  .section-box--entrevistas .swiper-slide {
    width: 100% !important;
  }
  .section-box--entrevistas .entrevistas-pagination {
    display: none !important;
  }
}

:root {
  --cor-principal: #604629;
  --cor-primaria-escura: #004997;
}

#banner-topo {
  position: relative;
  width: 100%;
  height: 316px;
  background-size: auto;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  box-sizing: border-box;
  background-position: right;
  padding-left: 1.5rem;
  background-color: #000000;
  background-position-y: -6px;
  /* Responsividade */
}
#banner-topo .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
  pointer-events: none;
}
#banner-topo .container {
  position: relative;
  z-index: 2;
  max-width: 1375px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: left;
  height: 100%;
}
#banner-topo h1 {
  color: #fff;
  font-size: 4rem;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.1;
  max-width: 800px;
  /* limita largura do texto para melhor leitura */
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}
@media (max-width: 1024px) {
  #banner-topo {
    height: 250px;
    padding-left: 2rem;
  }
  #banner-topo h1 {
    font-size: 3rem;
    max-width: 90%;
  }
}
@media (max-width: 768px) {
  #banner-topo {
    background-size: cover !important;
    height: 127px !important;
    background-position-y: 0px !important;
  }
  #banner-topo .container {
    justify-content: start !important;
    padding-left: 0px;
  }
  #banner-topo h1 {
    font-size: 2rem;
    max-width: 100%;
    text-align: center;
    padding-left: 0px;
  }
}
@media (max-width: 480px) {
  #banner-topo {
    height: 140px;
  }
  #banner-topo h1 {
    font-size: 1.6rem;
    padding: 0 1rem;
    word-break: break-word;
    padding-left: 0px;
  }
}

.area-biografia {
  position: relative;
  background-color: #eae6e3;
  padding: 2.5rem 0;
  /* 40px 0 */
  overflow-x: hidden;
}

.coluna-dois h2.governador-title {
  padding-top: 0rem !important;
}

.fundo-background {
  background: center/cover no-repeat;
  position: absolute;
  top: 0;
  left: 172px;
  width: 86%;
  height: 100%;
  z-index: 0;
  opacity: 0.8;
  pointer-events: none;
}

.conteudo-biografia {
  background-color: rgba(255, 255, 255, 0.29);
  border-radius: 8px;
  max-width: 1297px !important;
  margin: 0 auto;
  padding: 2.1875rem 1.5rem !important;
  padding-bottom: 2rem !important;
}

.botoes-biografia {
  display: flex;
  gap: 0.625rem;
  /* 10px */
  margin-bottom: 1.7rem;
}

.btn-bio {
  border-radius: 10px;
  padding: 0.625rem 1.25rem;
  /* 10px 20px */
  border: 2px solid var(--cor-primaria-escura);
  background: transparent;
  color: var(--cor-primaria-escura);
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
.btn-bio.ativo {
  background-color: var(--cor-primaria-escura);
  color: #fff;
}

.carousel-anos {
  position: relative;
  margin: 1.25rem 0;
  /* 20px */
  padding: 0 2.5rem;
  /* 40px */
  display: flex;
  align-items: center;
}
.carousel-anos .biografia-swiper {
  overflow: hidden;
  width: 100%;
}
.carousel-anos .swiper-wrapper {
  display: flex;
  align-items: center;
  transition-timing-function: ease;
  width: -moz-fit-content;
  width: fit-content;
}
.carousel-anos .swiper-slide {
  flex-shrink: 0;
  width: auto;
  padding: 0;
  white-space: nowrap;
  font-weight: bold;
  color: var(--cor-principal);
  cursor: pointer;
  position: relative;
}
.carousel-anos .swiper-slide::after {
  content: "|";
  margin-left: 0.3125rem;
  /* 5px */
  color: var(--cor-principal);
}
.carousel-anos .swiper-slide:last-child::after {
  content: "";
}

.seta {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 1.5rem;
  /* 24px */
  cursor: pointer;
  color: var(--cor-principal);
  z-index: 2;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.biografia-prev {
  left: 0;
}

.biografia-next {
  right: 0;
}

.grid-posts {
  padding-top: 3rem;
  /* Bolinhas no topo das colunas da linha normal */
  /* Bolinhas embaixo das colunas da última linha */
}
.grid-posts .linha {
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
  /* 20px */
  padding: 1.25rem 0 0.125rem;
  /* 20px 0 2px */
  position: relative;
  /* Bolinha no início da linha traçada */
  /* Seta no final da linha traçada */
}
.grid-posts .linha:not(:last-child) {
  border-bottom: 1px solid var(--cor-principal);
}
.grid-posts .linha.linha-ultima {
  padding-left: 15rem;
  padding-top: 0px;
}
.grid-posts .linha:not(:last-child)::before {
  content: "";
  width: 0.5rem;
  /* 8px */
  height: 0.5rem;
  background-color: #A59C92;
  border-radius: 50%;
  position: absolute;
  left: 0rem;
  bottom: 0;
  transform: translateY(50%);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.grid-posts .linha:not(:last-child)::after {
  content: ">";
  font-weight: 500;
  color: #A59C92;
  position: absolute;
  right: -2px;
  bottom: 0.8px;
  font-size: 1.125rem;
  transform: translateY(50%);
  z-index: 5;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.grid-posts .linha:not(.linha-ultima) .coluna.esquerda::before,
.grid-posts .linha:not(.linha-ultima) .coluna.direita::before {
  content: "";
  position: absolute;
  top: -0.3125rem;
  /* -5px */
  left: -0.3125rem;
  width: 0.5rem;
  height: 0.5rem;
  background-color: #A59C92;
  border-radius: 50%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.grid-posts .linha-ultima .coluna.esquerda::after,
.grid-posts .linha-ultima .coluna.direita::after {
  content: "";
  position: absolute;
  width: 0.5rem;
  height: 0.5rem;
  background-color: #A59C92;
  border-radius: 50%;
  bottom: 0rem;
  left: -0.3rem;
  z-index: 2;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.linha-ultima .imagem-destaque-wrapper {
  margin-top: 52px;
}

.coluna {
  flex: 1;
  color: var(--cor-principal);
  border-left: 2px dashed #A59C92;
  padding-left: 1.875rem;
  /* 30px */
  position: relative;
  margin-left: 15px;
}
.coluna h3 {
  margin-bottom: 0.025rem;
  margin-top: -10px;
  font-weight: bold;
  font-size: 2rem;
}
.coluna.esquerda .imagem-destaque {
  margin-left: 1.625rem;
  /* 26px */
  margin-right: -1.75rem;
  /* -28px */
}
.coluna.esquerda .circulo-empty {
  width: 13rem;
  /* 210px */
  height: 13rem;
  /* 210px */
  border: 1px solid var(--cor-principal);
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -8.3rem;
  border-radius: 100%;
}
.coluna.direita .circulo-empty {
  width: 15rem;
  height: 15rem;
  border: 1px solid var(--cor-principal);
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -12.5rem;
  border-radius: 0;
}
.coluna.esquerda .imagem-destaque {
  margin-left: 1.5625rem;
  /* 25px */
}

.coluna.direita .imagem-destaque {
  margin-right: -55px;
  margin-top: 19px;
}

.linha-ultima .coluna.direita .imagem-destaque {
  margin-right: 0px;
  margin-top: 0px;
}

.linha-ultima .coluna.esquerda .imagem-destaque {
  margin-left: 1.5625rem;
  margin-top: 20px;
}

.linha-ultima .coluna.esquerda .circulo-empty {
  width: 15rem;
  height: 14.375rem;
  border: 1px solid var(--cor-principal);
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -12.66rem;
  border-radius: 0;
}

.linha-ultima .coluna.direita .circulo-empty {
  width: 13rem;
  height: 13rem;
  border: 1px solid var(--cor-principal);
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -10rem;
  border-radius: 100%;
  margin-bottom: 21px;
}

.imagem-destaque-wrapper {
  position: relative;
  width: 100%;
  margin: 1.25rem auto 3.0625rem;
  /* 20px 0 49px */
  display: flex;
}

.imagem-destaque {
  width: 13rem;
  /* 210px */
  height: 13rem;
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  margin: 0 auto;
}

.circulo-arredor,
.circulo-empty {
  width: 13.75rem;
  /* 220px */
  height: 13.75rem;
  border: 1px solid var(--cor-principal);
  display: flex;
  align-items: center;
  justify-content: center;
}

.circulo-arredor {
  border-radius: 50%;
  position: relative;
  z-index: 1;
  border: none;
}

.circulo-empty {
  border-radius: 50%;
  margin-left: -10rem;
  /* -160px */
}

.veja-mais {
  color: var(--cor-principal);
  font-weight: 400;
  text-decoration: none;
  font-size: 14px;
}

.carousel-blocos {
  position: relative;
}

.carousel-blocos .seta {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  cursor: pointer;
}

.carousel-blocos .seta img {
  width: 50%;
  height: auto;
}

.carousel-blocos .bloco-prev {
  left: -23px;
  top: 14.55rem;
}

.carousel-blocos .bloco-next {
  right: -44px;
  top: 14.48rem;
}

.biografia-prev img {
  width: 10px;
}

.biografia-next img {
  width: 10px;
}

.biografia-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.biografia-card-image {
  width: 100%;
  height: 205px; /* altura fixa */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.biografia-card-wrapper {
  margin-bottom: 2rem;
}

.biografia-card-content {
  display: grid;
  padding: 1rem;
  flex-grow: 1;
}

.biografia-data-post {
  font-size: 0.8rem;
  color: #004997;
  display: block;
  margin-bottom: 0.4rem;
  font-weight: bold;
}

.biografia-card-content h3 {
  font-size: 1.2rem;
  font-weight: bold;
  color: #000;
  margin: 5px 0 0.75rem;
  margin-bottom: -8px;
}

.biografia-excerpt {
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
  margin-bottom: 0.5rem;
}

.biografia-read-more {
  color: #004997;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  padding-top: 0.5rem;
}

.biografia-card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* cobre o container mantendo proporção e cortando excesso */
  border: 0;
  display: block;
}

/* GRID 4 colunas para desktop */
.biografia-grid-posts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 20px;
}

/* Responsivo: 1 coluna em telas menores */
@media (max-width: 767px) {
  .biografia-grid-posts {
    grid-template-columns: 1fr;
    padding: 10px;
  }
  .conteudo-deputado-federal {
    display: block !important;
  }
  .segunda .resumo-grid {
    flex-direction: column-reverse;
  }
  .segunda .coluna.texto {
    padding-left: 0px !important;
    padding-right: 0px !important;
    padding-top: 2.5rem !important;
  }
}
.resumo-grid {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding-bottom: 1.5rem;
}

.resumo-grid .coluna {
  flex: 1 1 50%;
  min-width: 300px;
}

.resumo-grid .imagem img,
.imagem-meio img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.imagem-meio img {
  position: relative;
  z-index: 2;
  display: block;
  margin: 0 auto;
  top: 2rem;
  margin-bottom: -7rem;
}

.coluna-dois h2 {
  padding-top: 8rem;
}

.coluna.texto {
  color: #fff;
}

.container.resumo-section.primeira .texto {
  color: #000;
}

.resumo-section.primeira h2 {
  font-size: 2rem;
  color: #fff !important;
  margin-bottom: 0px;
  margin-top: 0px;
  font-weight: bold;
}

.resumo-section.primeira p {
  color: #fff;
  margin-top: 10px;
}

.resumo-section.quinta h2 {
  margin-bottom: 0px;
}

.container.resumo-section.primeira {
  padding-bottom: 2rem;
}

#resumo .coluna {
  flex: 1;
  border-left: none;
  padding-left: 0px;
  position: relative;
  margin-left: 0px;
}

.coluna-dois h2 {
  padding-top: 6rem !important;
}

.segunda h2 {
  font-size: 2rem;
  color: #fff !important;
  margin-bottom: 0px;
  margin-top: 0px;
  font-weight: bold;
}

.segunda p {
  margin-top: 10px;
}

.page-id-31097 img {
  border-radius: 10px;
}

.terceira h2 {
  padding-top: 1rem;
  margin-bottom: 1rem;
  line-height: 1;
  font-size: 2rem;
  color: #000 !important;
  margin-top: 1rem;
  font-weight: bold;
}

.terceira .texto {
  color: #000;
}

.terceira p {
  margin-top: 0px;
}

.container.resumo-section.terceira {
  margin-top: 2rem;
  position: relative;
  border-radius: 15px;
  padding-right: 4rem !important;
}

.imagem-terceira img {
  width: 100%;
  border-radius: 15px;
}

.imagem-ultima img {
  width: 100%;
  border-radius: 15px;
}

.icones-politico {
  display: flex;
}

.icones-politico i.fas {
  padding-right: 5px;
}

.container.resumo-section.quinta {
  padding-right: 4rem !important;
}

.container.resumo-section.quarta {
  margin-top: 2rem;
  background-color: #064096;
  color: #fff;
  border-radius: 15px;
  position: relative;
  padding: 2rem;
  padding-right: 4rem !important;
}
.container.resumo-section.quarta h2 {
  padding-bottom: 0 !important;
  margin: 0 !important;
  font-weight: bold;
  font-size: 1.8rem;
  padding-top: 0rem;
}
@media (max-width: 768px) {
  .container.resumo-section.quarta h2 {
    margin-bottom: 15px !important;
    padding-left: 17px;
  }
}
.container.resumo-section.quarta p {
  color: #fff;
  margin-top: 0;
}
@media (max-width: 768px) {
  .container.resumo-section.quarta p {
    padding-left: 17px;
    padding-right: 17px;
  }
}
.container.resumo-section.quarta .colunas-senador {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.container.resumo-section.quarta .colunas-senador .coluna {
  flex: 1 1 100%;
  min-width: 280px;
}
@media (min-width: 768px) {
  .container.resumo-section.quarta .colunas-senador .coluna {
    flex: 1 1 50%;
  }
}

/* Media queries */
@media (max-width: 768px) {
  .resumo-section.primeira p {
    padding-right: 15px;
  }
  .icones-politico {
    display: block;
    margin-left: 1rem;
  }
  .item-icone {
    margin-bottom: 1rem !important;
  }
  .resumo-grid {
    display: block;
    align-items: flex-start;
    padding-top: 33px;
    padding-bottom: 20px;
  }
  .container.resumo-section.primeira .texto {
    color: #000;
    margin-top: 0px;
  }
  .imagem-meio img {
    position: relative;
    z-index: 2;
    display: block;
    margin: 0 auto;
    top: 1.5rem;
    margin-bottom: -7rem;
  }
  .segunda h2 {
    margin-bottom: -20px;
    line-height: 1;
    font-size: 1.8rem;
    padding-left: 1rem;
    padding-bottom: 2rem;
    padding-top: 1rem;
  }
  .primeira h2 {
    font-size: 1.8rem !important;
  }
  .segunda p {
    padding-left: 16px;
    padding-right: 18px;
  }
  .terceira h2 {
    padding-top: 2.3rem;
    line-height: 1;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    padding-left: 1rem;
    font-weight: bold;
  }
  .terceira p {
    padding-left: 16px;
    padding-right: 18px;
    padding-bottom: 2rem;
  }
  .coluna-dois h2 {
    padding-top: 28px !important;
  }
  .imagem-ultima img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: -24px;
  }
  .imagem img {
    margin-bottom: 20px;
  }
  .conteudo-presidente img {
    width: 100% !important;
  }
  .resumo-section.quinta h2 {
    margin-bottom: 0px;
    font-size: 1.8rem !important;
    font-weight: bold;
  }
  .primeira .resumo-grid {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
    margin-top: 2rem;
  }
  .segunda .resumo-grid {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
  #biografia .container.resumo-section.quinta {
    padding-left: 15px !important;
    padding-right: 15px !important;
    padding-bottom: 30px !important;
  }
  .container.resumo-section.quarta h2 {
    margin-bottom: 10px !important;
    padding-left: 17px;
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 37px;
    padding-top: 2rem;
  }
  .fundo-background {
    background-size: contain !important;
    top: 0 !important;
    left: -20px !important;
    width: 500px;
    height: 67% !important;
    z-index: 0;
    opacity: 1.8 !important;
  }
  .imagem-destaque-wrapper {
    width: 8.75rem;
    /* 140px */
    height: 8.75rem;
  }
  .circulo-arredor {
    width: 8.75rem;
    height: 8.75rem;
  }
  .conteudo-biografia {
    padding: 1.5rem;
  }
  .linha-ultima {
    padding-left: 0;
  }
  #biografia .container {
    padding: 0px !important;
  }
  .imagem-destaque {
    margin: auto !important;
    width: 10rem;
    height: 10rem;
  }
  .coluna h3 {
    margin-top: -10px;
    margin-left: 20px;
  }
  .coluna.imagem {
    padding: 0px !important;
  }
  .veja-mais {
    margin-left: 20px;
  }
  .grid-posts .linha-ultima {
    display: none;
  }
  .grid-posts .linha {
    flex-direction: column;
    gap: 2rem;
  }
  .coluna {
    border-left: 2px dashed #A59C92;
    padding-left: 0;
    margin-left: 0;
    margin-top: -27px;
  }
  .carousel-blocos .seta {
    top: 92% !important;
    transform: translateY(0);
  }
  .carousel-blocos .bloco-prev {
    left: 6px;
  }
  .carousel-blocos .bloco-next {
    right: -24px;
  }
  .grid-posts .linha:not(.linha-ultima) .coluna.esquerda::before,
  .grid-posts .linha:not(.linha-ultima) .coluna.direita::before {
    left: -0.3125rem;
  }
  .grid-posts .linha:not(:last-child)::before {
    left: -3.1px;
    bottom: 0px;
  }
  .grid-posts .linha:not(:last-child) {
    margin-left: 10px;
    margin-bottom: 30px;
  }
  .linha-ultima .coluna.direita {
    margin-top: -47px !important;
    padding-top: 55px;
  }
  .linha.linha-ultima {
    display: block;
    padding-left: 0.7rem !important;
  }
  .linha-ultima .coluna.esquerda {
    padding-top: 40px;
  }
  .circulo-empty {
    display: none !important;
  }
  .resumo-section.quinta .icones-politico {
    margin-left: 0rem;
  }
}
.conteudo-presidente img {
  width: 500px;
}

#na-midia {
  background-color: #F3F3F3;
  padding: 60px 70px;
}
@media (max-width: 768px) {
  #na-midia {
    padding: 30px 11px;
  }
}

.namidia-card-content {
  display: grid;
  padding: 1rem;
  flex-grow: 1;
}
.namidia-card-content audio {
  padding: 0.4rem 0 0.7rem !important;
  width: 100% !important;
}
.namidia-card-content .data-post {
  font-size: 0.8rem;
  color: #004997;
  display: block;
  margin-bottom: 0.4rem;
  font-weight: bold;
}
.namidia-card-content h3 {
  font-size: 1.2rem;
  font-weight: bold;
  color: #000;
  margin: 5px 0 0.75rem;
}
.namidia-card-content .excerpt {
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
  margin-bottom: 0.5rem;
}
.namidia-card-content .read-more {
  color: #004997;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  padding-top: 0.5rem;
}

.botoes-biografia-wrapper {
  margin-bottom: 1.5rem;
}
.botoes-biografia-wrapper .swiper-slide {
  width: auto;
}

.btn-bio {
  padding: 0.7rem 1.2rem;
  background-color: #004997;
  color: #fff;
  margin: 0.3rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  white-space: nowrap;
}
.btn-bio.ativo {
  background-color: #DAA50A;
  color: #000;
}

.namidia-card-wrapper {
  margin-bottom: 2rem;
}

.namidia-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
  max-width: 500px;
  margin: 0 auto;
}
.namidia-card-image {
  width: 100%;
  height: 305px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.namidia-card-image iframe,
.namidia-card-image img {
  width: 100%;
  height: 100%;
  border: 0;
}
.namidia-card-image img {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px 10px 0 0;
  -o-object-position: left;
     object-position: left;
}

.btn-load {
  text-align: center;
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.btn-load button {
  background-color: #004997;
  color: #fff;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 5px;
  cursor: pointer;
}

@media (min-width: 769px) {
  .namidia-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem 0 0;
  }
}
@media (max-width: 768px) {
  #na-midia {
    padding: 30px 11px;
  }
  .swiper-button-next {
    right: var(--swiper-navigation-sides-offset, 10px);
    left: auto;
    top: 13px;
    left: 40px;
  }
  .swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
    top: 13px !important;
    left: -1px !important;
  }
  .swiper-button-next.swiper-button-disabled {
    left: 40px !important;
  }
  .swiper-button-prev {
    top: 13px !important;
    left: -1px !important;
  }
  .namidia-swiper {
    padding: 1rem 0;
  }
  .namidia-swiper .swiper-controls {
    display: flex;
    justify-content: flex-start;
    padding-left: 1rem;
    gap: 20px;
    margin-bottom: 1rem;
    padding-top: 15px;
  }
  .swiper-button-next,
  .swiper-button-prev {
    color: #DAA50A !important;
  }
  .swiper-button-next:after, .swiper-button-prev:after {
    font-size: 25px;
    font-weight: bold;
  }
  .namidia-swiper {
    padding: 1rem 0;
  }
  .namidia-swiper .swiper-controls {
    display: flex;
    justify-content: flex-start;
    padding: 15px 0 1rem 1rem;
    gap: 20px;
  }
  .swiper-button-next,
  .swiper-button-prev {
    color: #DAA50A !important;
  }
  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 25px !important;
    font-weight: bold !important;
  }
  .swiper-button-prev {
    top: 13px !important;
    left: -1px !important;
  }
  .swiper-button-next {
    top: 13px !important;
    left: 40px !important;
  }
  .swiper-button-next.swiper-button-disabled {
    left: 40px !important;
  }
  .swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
    top: 13px !important;
    left: -1px !important;
  }
}
.page-id-31088 section#banner-topo {
  background-position: left;
}
.page-id-31088 #banner-topo .container {
  position: relative;
  max-width: 1410px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: left;
}
.page-id-31088 #banner-topo h1 {
  color: #fff;
  font-size: 4rem;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.1;
  max-width: 100%;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  width: 100%;
  display: flex;
  justify-content: end;
}
@media (max-width: 768px) {
  .page-id-31088 #banner-topo h1 {
    font-size: 1.6rem;
  }
}

#contato {
  padding: 60px 0;
  background-color: #f2f2f2;
}
#contato .contato-wrapper {
  display: flex;
  gap: 40px;
  background: #fff;
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}
#contato .contato-wrapper .col-esquerda,
#contato .contato-wrapper .col-direita {
  flex: 1 1 50%;
}
#contato h2 {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 700;
  margin-top: 0px;
  line-height: 1.5;
}
#contato p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}
#contato h4 {
  font-size: 18px;
  margin-top: 30px;
}
#contato .footer-social-icons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}
#contato .footer-social-icons a {
  color: #333;
  font-size: 22px;
  transition: color 0.3s ease;
}
#contato .footer-social-icons a:hover {
  color: #007bff;
}
@media (max-width: 768px) {
  #contato .contato-wrapper {
    flex-direction: column;
    padding: 20px;
  }
  #contato .contato-wrapper .col-esquerda,
  #contato .contato-wrapper .col-direita {
    flex: 1 1 100%;
  }
  #contato h2 {
    font-size: 20px;
  }
  #contato p {
    font-size: 15px;
  }
  #contato h4 {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  #contato .contato-wrapper {
    padding: 15px;
    gap: 20px;
  }
  #contato .footer-social-icons {
    font-size: 20px;
    gap: 8px;
  }
  #contato h2 {
    font-size: 18px;
  }
}

#contato form {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 9px;
}
#contato form .form-row {
  width: 95%;
}
#contato form .form-row input,
#contato form .form-row textarea {
  width: 95%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}
#contato form .form-row textarea {
  resize: vertical;
  min-height: 120px;
}
#contato form .form-row.half {
  width: calc(52% - 33px);
  padding-right: 16px;
}
#contato form .form-row.third {
  width: calc(33.4% - 25.33px);
  padding-right: 20px;
}
#contato form .form-row.full {
  width: 100%;
}
#contato form input[type=submit] {
  background-color: #DAA50A;
  color: #000;
  border: none;
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  font-size: 0.95rem;
  transition: background 0.3s;
  flex-shrink: 0;
  white-space: nowrap;
  margin-left: 0;
  width: auto;
  margin-top: 10px;
}
#contato form input[type=submit]:hover {
  background-color: #c89106;
}
@media (max-width: 768px) {
  #contato form .form-row.half,
  #contato form .form-row.third {
    width: 100%;
  }
  #contato form .form-row.full {
    width: 96%;
  }
}

.page-id-31095 section#banner-topo {
  position: relative;
  width: 100%;
  height: 316px;
  background-size: contain;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  box-sizing: border-box;
  background-position: right;
  padding-left: 1.5rem;
  background-color: #000000;
}

#realizacoes {
  padding: 60px 20px;
}
#realizacoes .container {
  max-width: 1200px;
  margin: 0 auto;
}
#realizacoes .cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
#realizacoes .flip-card {
  background-color: transparent;
  border: 3px solid;
  border-radius: 10px;
  perspective: 1000px;
  transition: transform 0.5s ease-in-out;
}
#realizacoes .flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}
#realizacoes .flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  min-height: 300px;
  border-radius: 10px;
}
#realizacoes .flip-card-front, #realizacoes .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 10px;
  overflow: hidden;
}
#realizacoes .flip-card-front {
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
}
#realizacoes .flip-card-front img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#realizacoes .flip-card-back {
  background-color: #DAA50A;
  margin-top: -1px;
  transform: rotateY(180deg);
  padding: 1px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#realizacoes .flip-card-back h2 {
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 0px;
  font-weight: bold;
}
#realizacoes .flip-card-back .conteudo-post {
  font-size: 14px;
  text-align: justify;
  color: #000;
  padding: 10px;
}
#realizacoes .carregar-mais-wrapper {
  text-align: center;
  margin-top: 2rem;
}
#realizacoes .carregar-mais-wrapper #load-more-btn {
  background-color: #004997;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}
#realizacoes .carregar-mais-wrapper #load-more-btn:hover {
  background-color: #003870;
}

a {
  text-decoration: none;
}

.row-orange {
  border-top: solid 8px #DAA50A;
  border-bottom: solid 5px #004997;
}

.row-yellow {
  border-top: solid 10px #DAA50A;
  border-bottom: solid 10px #184F17;
}

.row-white {
  border-bottom: solid 1px #ffffff;
}

.line {
  flex: 1;
  height: 0px;
  margin: 0px 1rem;
  border-top: solid 3px #DAA50A;
}

i.fas.fa-angle-right {
  font-size: 12px;
  margin-left: 15px;
}

body {
  margin: 0;
  font-family: "Lato", sans-serif;
  color: #000;
  background: #fff;
}

h2 {
  font-weight: 400;
  font-size: 45px;
  line-height: 2;
  letter-spacing: 0;
  margin-top: 20px;
}

.container {
  max-width: 1426px;
  margin: 0 auto;
  padding: 0 15px;
}

#banner {
  position: relative;
  width: 100%;
  height: 43vh;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-bottom: -1px;
}
#banner .container {
  width: 100%;
  max-width: 1426px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
#banner .banner-text-wrapper {
  max-width: 600px;
  text-align: right;
  color: #fff;
  margin-right: 13.8rem;
  margin-top: 1.8rem;
}
#banner .banner-text-wrapper .banner-title {
  font-family: "Lato", sans-serif;
  font-weight: 800;
  font-size: 6rem;
  line-height: 0.85;
  margin: 0;
  color: #fff;
  margin-right: -4rem !important;
  margin-top: -2rem;
}
#banner .banner-text-wrapper .banner-subtitle {
  font-family: "Lato", sans-serif;
  font-weight: 800;
  font-size: 3.8rem;
  line-height: 1.2;
  margin: 0;
  color: #fff;
  margin-right: -3.2rem;
}

.banner-post {
  width: 100%;
  height: 45vh;
  position: relative;
  background-size: cover;
  margin-bottom: 2rem;
  background-position-y: center;
}

.banner-post .overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* escurece a imagem */
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-post .banner-title {
  color: white;
  font-size: 45px;
  text-align: center;
  padding: 0 1rem;
}

.entry {
  max-width: 1345px;
  margin: 0 auto;
  padding: 2rem 1rem;
  line-height: 1.7;
  color: #333;
  padding-top: 0px;
  padding-bottom: 4.3rem;
}
.entry .wp-block-audio audio {
  margin-top: 50px;
}

.entry h2, .entry h3, .entry h4 {
  margin-top: 2em;
  margin-bottom: 1em;
  font-weight: bold;
  color: #004997;
}

.wp-block-media-text__content {
  padding-left: 20px !important;
}

.entry p {
  margin-bottom: 1.5em;
  font-size: 1rem;
  text-align: center;
}

.entry img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.entry figure {
  margin: 2rem auto;
  text-align: center;
}

.entry figcaption {
  font-size: 0.9rem;
  color: #666;
  margin-top: 0.5rem;
}

.entry ul,
.entry ol {
  padding-left: 2rem;
  margin-bottom: 1.5em;
}

.entry li {
  margin-bottom: 0.5em;
}

.entry blockquote {
  border-left: 4px solid #004997;
  padding-left: 1rem;
  margin: 2rem 0;
  font-style: italic;
  color: #444;
  background-color: #f6f8fa;
}

.entry iframe {
  max-width: 100%;
  margin: 2rem auto;
  display: block;
}

.entry a {
  color: #004997;
  text-decoration: underline;
  transition: 0.2s;
}

.entry a:hover {
  color: #002c5e;
}

.single .card-image img.fixed-image {
  -o-object-position: left;
     object-position: left;
}

.section-mais-posts {
  padding-top: 0rem;
}
.section-mais-posts h2 {
  margin-bottom: 0px;
}

img.fixed-image.wp-post-image {
  margin-top: 0px !important;
}

@media (max-width: 768px) {
  .line {
    display: none;
  }
  i.fas.fa-phone {
    margin-top: 20px;
  }
  .post-header {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  #gallery-1 img {
    width: 100%;
    height: auto;
  }
  .banner-post {
    background-position-y: 0px;
  }
  .entry {
    padding-left: 15px;
    padding-right: 15px;
  }
  .section-mais-posts h2 {
    line-height: 1;
  }
}
@media (max-width: 1024px) {
  #banner .banner-text-wrapper {
    text-align: center;
    margin: 0 auto;
  }
  #banner .banner-text-wrapper .banner-title {
    font-size: 4rem;
    margin-right: -21rem !important;
    margin-top: 1rem;
  }
  #banner .banner-text-wrapper .banner-subtitle {
    font-size: 2.59rem;
    margin-right: -21rem;
  }
}
@media (max-width: 768px) {
  .entry p {
    margin-bottom: 1.5em;
    font-size: 1rem;
    text-align: start;
  }
  #banner {
    height: 15vh;
    background-size: cover;
  }
  #banner .container {
    justify-content: center;
  }
  #banner .banner-text-wrapper {
    text-align: center;
    margin-top: -1rem;
    margin-left: 5rem;
  }
  #banner .banner-text-wrapper .banner-title {
    font-size: 30px;
    line-height: 1.1;
    margin-right: -18rem !important;
  }
  #banner .banner-text-wrapper .banner-subtitle {
    font-size: 19.5px;
    line-height: 1.2;
    margin-top: 5px;
    margin-right: -18rem;
  }
}
.section-box {
  padding: 1rem 1rem;
  background-color: #F3F3F3;
  padding-bottom: 4.5rem;
}
.section-box .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.section-box .swiper-container {
  width: 100%;
  overflow: hidden;
}
.section-box .swiper-slide {
  display: flex;
  justify-content: center;
}
.section-box .card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  max-width: 500px;
}
.section-box .card .card-image {
  width: 100%;
  height: 305px;
}
.section-box .card .card-image img.fixed-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px 10px 0 0;
}
.section-box .card .card-content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.section-box .card .card-content h3 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
  color: #000;
}
.section-box .card .card-content .excerpt {
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
  margin-bottom: 0.5rem;
  flex-grow: 1;
}
.section-box .card .card-content .read-more {
  color: #004997;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
}
.section-box .card .card-content .read-more:hover {
  text-decoration: underline;
}
.section-box .btn {
  color: #fff;
  background: #004997;
  padding: 1rem 2rem;
  border-radius: 10px;
  text-decoration: none;
}
.section-box .btn i {
  margin-left: 0.5rem;
  margin-top: 5px;
}
.section-box .noticias-pagination {
  display: none;
}
@media (max-width: 768px) {
  .section-box {
    padding-bottom: 3.5rem;
  }
  .section-box .section-header {
    display: block !important;
    margin-bottom: 1.1rem !important;
  }
  .section-box .btn {
    padding: 0.5rem 0.8rem !important;
    margin-top: -10px !important;
  }
  .section-box .swiper-wrapper {
    display: flex !important;
  }
  .section-box .swiper-slide {
    width: 100% !important;
  }
  .section-box .noticias-pagination {
    display: flex !important;
    justify-content: center;
    margin-top: 1rem;
    gap: 8px;
    position: relative;
    z-index: 1;
  }
  .section-box .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ccc;
    opacity: 0.5;
    border-radius: 50%;
    transition: opacity 0.3s;
  }
  .section-box .swiper-pagination-bullet-active {
    background: #DAA50A;
    opacity: 1;
  }
}
@media (min-width: 769px) {
  .section-box .swiper-wrapper {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  .section-box .swiper-slide {
    width: 100% !important;
  }
  .section-box .noticias-pagination {
    display: none !important;
  }
}

.section-box--canais {
  background: #004997;
  padding: 1rem 1rem;
  padding-bottom: 4.5rem;
}
.section-box--canais h2 {
  color: #ffffff;
  margin-bottom: 0px;
}
.section-box--canais .section-header {
  text-align: center;
  margin-bottom: 2rem;
}
.section-box--canais .canais-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.1rem;
}
.section-box--canais .canal-box {
  border-radius: 20px;
  padding: 1.5rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 315px;
  position: relative;
  text-align: left;
}
.section-box--canais .canal-box .canal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section-box--canais .canal-box .canal-header h3 {
  font-size: 1.5rem;
  margin: 0;
}
.section-box--canais .canal-box .canal-header a {
  color: #ffffff;
  font-size: 0.95rem;
  text-decoration: none;
}
.section-box--canais .canal-box .canal-feed-placeholder {
  margin-top: 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 1rem;
  min-height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 0.95rem;
  text-align: center;
}
.section-box--canais .canal-box.canal-instagram, .section-box--canais .canal-box.canal-facebook {
  background-color: #034094;
}
.section-box--canais .canal-box.canal-psdb {
  background-color: #FCF251;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px;
}
.section-box--canais .canal-box.canal-psdb img {
  max-width: 350px;
  height: auto;
  width: 305px;
}
.section-box--canais .canal-box.canal-psdb .canal-text {
  font-size: 0.95rem;
  color: #0027C6;
  font-weight: 500;
}
.section-box--canais .canal-box.canal-itv {
  background-color: #CEFDB9;
  align-items: center;
  justify-content: center;
  height: 150px;
}
.section-box--canais .canal-box.canal-itv img {
  max-width: 290px;
  width: 255px;
  height: auto;
}
.section-box--canais .canal-box.canal-itv .canal-text {
  font-size: 0.95rem;
  color: #38A636;
  font-weight: 500;
}

@media (max-width: 768px) {
  .section-box--canais {
    padding: 2.5rem 1rem !important;
    padding-bottom: 4.5rem !important;
  }
  .section-box h2 {
    margin-bottom: 0px;
  }
  .section-box img.fixed-image.wp-post-image {
    margin-top: 10px;
  }
  .section-box--canais .canal-box {
    height: auto;
    padding: 1rem;
  }
  .section-box--canais .canal-psdb img,
  .section-box--canais .canal-itv img {
    max-width: 100% !important;
    height: auto;
    width: 305px;
  }
  .section-box--canais h2 {
    color: #ffffff;
    font-size: 40px;
    line-height: 1;
    letter-spacing: 0;
    margin-bottom: 0px;
  }
}
.section-box--minas-agenda {
  background-color: #729174;
  padding: 5rem 1rem;
  padding-bottom: 5rem;
}
.section-box--minas-agenda a.seo-link {
  text-decoration: none;
  color: #FFFFFF !important;
}
.section-box--minas-agenda .minas-agenda-wrapper {
  display: flex;
  flex-wrap: wrap;
  background-color: #406042;
  border-radius: 15px;
  overflow: hidden;
  padding: 2rem;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}
.section-box--minas-agenda .minas-image {
  flex: 1 1 400px;
  max-width: 600px;
}
.section-box--minas-agenda .minas-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}
.section-box--minas-agenda .minas-content {
  flex: 1 1 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.section-box--minas-agenda .minas-content .minas-content-inner {
  text-align: left;
}
.section-box--minas-agenda .minas-content .minas-content-inner .minas-title {
  font-family: "Lato", sans-serif;
  font-weight: 800;
  font-size: 4.8rem;
  line-height: 70px;
  margin: 0;
  color: #fff;
}
.section-box--minas-agenda .minas-content .minas-content-inner .minas-subtitle {
  font-family: "Lato", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.2;
  margin-top: 1rem;
  color: #fff;
}
.section-box--minas-agenda .minas-content .minas-content-inner .minas-hashtag {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 3rem;
  line-height: 0;
  margin-top: 2rem;
  color: #DAA50A;
}
@media (max-width: 1024px) {
  .section-box--minas-agenda .minas-content .minas-content-inner .minas-title {
    font-size: 70px;
    line-height: 70px;
  }
  .section-box--minas-agenda .minas-content .minas-content-inner .minas-subtitle {
    font-size: 28px;
  }
  .section-box--minas-agenda .minas-content .minas-content-inner .minas-hashtag {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .section-box--minas-agenda .section-box--minas-agenda {
    padding: 4.5rem 1rem !important;
    padding-bottom: 4.5rem !important;
  }
  .section-box--minas-agenda .minas-agenda-wrapper {
    flex-direction: row !important;
    padding: 1.5rem !important;
    padding-bottom: 0px !important;
    padding-top: 2rem !important;
  }
  .section-box--minas-agenda .minas-image,
  .section-box--minas-agenda .minas-content {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .section-box--minas-agenda .minas-content-inner {
    text-align: center !important;
  }
  .section-box--minas-agenda .minas-content-inner .minas-title {
    font-size: 43px !important;
    line-height: 60px !important;
    padding-left: 0px !important;
    margin-top: -20px !important;
  }
  .section-box--minas-agenda .minas-content-inner .minas-subtitle {
    font-size: 29px !important;
  }
  .section-box--minas-agenda .minas-content-inner .minas-hashtag {
    font-size: 26px !important;
  }
}

.section-box--videos {
  background: #F3F3F3;
  padding: 1.4rem 1rem 3.1rem;
}
.section-box--videos .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0rem;
}
.section-box--videos .swiper-container {
  width: 100%;
  overflow: hidden;
}
.section-box--videos .swiper-slide {
  display: flex;
  justify-content: center;
}
.section-box--videos .video-card {
  border-radius: 10px;
  overflow: hidden;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 500px;
}
.section-box--videos .video-wrapper {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 8px;
  height: 318px;
}
.section-box--videos .video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.section-box--videos .video-title {
  font-size: 1rem;
  font-weight: bold;
  margin-top: 0.75rem;
  color: #222;
  text-align: start;
}
.section-box--videos .btn {
  color: #fff;
  background: #004997;
  padding: 1rem 2rem;
  border-radius: 10px;
  text-decoration: none;
}
.section-box--videos .btn i {
  margin-left: 0.5rem;
}
.section-box--videos .videos-pagination {
  display: none;
}
@media (max-width: 768px) {
  .section-box--videos .section-box--videos {
    padding: 1rem 1rem 3.1rem !important;
  }
  .section-box--videos .swiper-container {
    overflow: hidden;
  }
  .section-box--videos .section-header {
    display: block !important;
    align-items: center !important;
    margin-bottom: 1.7rem !important;
  }
  .section-box--videos .btn {
    padding: 0.5rem 0.8rem !important;
    margin-top: -10px !important;
  }
  .section-box--videos .swiper-wrapper {
    display: flex !important;
  }
  .section-box--videos .swiper-slide {
    width: 100% !important;
  }
  .section-box--videos .videos-pagination {
    display: flex !important;
    justify-content: center;
    margin-top: 1rem;
    gap: 8px;
  }
  .section-box--videos .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ccc;
    opacity: 0.5;
    border-radius: 50%;
    transition: opacity 0.3s;
  }
  .section-box--videos .swiper-pagination-bullet-active {
    background: #DAA50A;
    opacity: 1;
  }
  .section-box--videos .videos-pagination .swiper-pagination-bullet-active {
    background-color: #1e3a8a !important;
  }
  .section-box--videos .video-card {
    padding: 0rem !important;
  }
  .section-box--videos article.video-card.swiper-slide.swiper-slide-active {
    margin-bottom: 1rem;
  }
}
@media (min-width: 769px) {
  .section-box--videos .swiper-wrapper {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
  .section-box--videos .swiper-slide {
    width: 100% !important;
  }
  .section-box--videos .videos-pagination {
    display: none !important;
  }
}

.section-box--ponto {
  background: #004996;
  padding-top: 2rem;
}
.section-box--ponto .swiper-wrapper {
  display: flex !important;
  gap: 0rem;
}
.section-box--ponto .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.section-box--ponto .section-header h2 {
  color: #fff;
  margin: 0;
}
.section-box--ponto .section-header .carousel-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.section-box--ponto .section-header .carousel-nav .opiniao-arrow-prev,
.section-box--ponto .section-header .carousel-nav .opiniao-arrow-next {
  width: 32px;
  height: 32px;
  cursor: pointer;
}
.section-box--ponto .section-header .carousel-nav .opiniao-arrow-prev img,
.section-box--ponto .section-header .carousel-nav .opiniao-arrow-next img {
  width: 100%;
  height: auto;
  display: block;
}
.section-box--ponto .opiniao-swiper {
  overflow: hidden;
  padding-bottom: 20px;
}
.section-box--ponto .opiniao-swiper .swiper-slide {
  width: 535px !important;
  max-width: 100%;
  flex-shrink: 0;
  margin-right: 20px;
}
.section-box--ponto .card {
  background: #fff;
  color: #000;
  position: relative;
  border-radius: 10px;
  padding: 1rem;
  height: 100%;
  padding-top: 3rem;
}
.section-box--ponto .opiniao-icon {
  position: absolute;
  top: 2.1rem;
  left: 2.06rem;
  width: 50px;
  height: auto;
}
.section-box--ponto .card-content {
  margin-top: 1rem;
}
.section-box--ponto .card-content h3 {
  font-size: 1.2rem;
  font-weight: 500 !important;
  margin-bottom: 0.5rem;
  font-style: italic;
}
.section-box--ponto .card-content p {
  margin: 0;
  color: #333;
}
.section-box--ponto .flickr-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem;
}
.section-box--ponto .flickr-box {
  flex: 1;
  min-width: 300px;
  background-color: #2463A6;
  border-radius: 20px;
  padding: 1.5rem 1.5rem;
  color: #fff;
  display: flex;
  flex-direction: column;
}
.section-box--ponto .flickr-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.section-box--ponto .flickr-header h3 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 600;
}
.section-box--ponto .flickr-header a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
}
.section-box--ponto .flickr-grid {
  display: grid;
}
.section-box--ponto .flickr-grid .justified-gallery a {
  margin-left: -12px;
}
.section-box--ponto .flickr-grid .flickr-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.section-box--ponto .flickr-grid a.jg-entry {
  border-radius: 10px;
}
@media (max-width: 768px) {
  .section-box--ponto div#swiper-wrapper-cf6d95f107f7f45dc {
    margin-bottom: auto !important;
  }
  .section-box--ponto .swiper-wrapper {
    gap: 0 !important;
    margin-right: 0 !important;
  }
  .section-box--ponto .justified-gallery {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .section-box--ponto .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .section-box--ponto .opiniao-swiper .swiper-slide {
    width: 100% !important;
    margin-right: 0 !important;
  }
  .section-box--ponto .flickr-boxes {
    flex-direction: column;
  }
  .section-box--ponto .flickr-box {
    flex: 1;
    min-width: 0px !important;
  }
  .section-box--ponto .swiper-slide {
    flex-shrink: 0 !important;
    width: 100% !important;
    height: 100% !important;
    position: relative !important;
    transition-property: transform !important;
  }
}

.site-footer {
  background-color: #004997;
  color: #fff;
  padding: 2.5rem 1rem 3.5rem;
  font-family: "Lato", sans-serif;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  align-items: start;
}

.footer-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.footer-col h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.footer-col p,
.footer-col a {
  font-size: 0.95rem;
  line-height: 1.4;
}

.footer-logo {
  display: flex;
  align-items: flex-start;
}

.footer-logo img {
  padding-top: 23px;
  max-width: 230px;
  height: auto;
  display: block;
}

.footer-social-icons {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.footer-social-icons img {
  width: 28px;
  height: 28px;
  transition: transform 0.2s;
}

.footer-social-icons a:hover img {
  transform: scale(1.1);
}

.fade-in-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: none;
}

#back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #004997;
  padding: 9px;
  padding-bottom: 6px;
  border-radius: 50%;
  z-index: 999;
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  color: #DAA50A;
  font-size: 18px;
  text-align: center;
  line-height: 1;
  border: solid 2px #DAA50A;
}
#back-to-top:hover {
  transform: scale(1.1);
  cursor: pointer;
}

/* ===== FORMULÁRIO Contact Form 7 - CAMPOS EM COLUNA ===== */
.footer-form {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}

.footer-form .form-row {
  display: flex;
  flex-direction: column;
  gap: 7px;
  width: 100%;
}

.camposnews {
  padding: 0.5rem 0.75rem;
  border: none;
  border-radius: 4px;
  font-size: 0.9rem;
  width: 99.8%;
  box-sizing: border-box;
}

/* Input de WhatsApp */
input.camposnews {
  flex: 1 1 auto;
  min-width: 0;
  box-sizing: border-box;
  padding: 0.5rem 0.75rem;
  border: none;
  border-radius: 4px;
  font-size: 0.9rem;
}

/* Botão de envio */
#enviar_comentario,
.footer-submit {
  background-color: #DAA50A;
  color: #000;
  border: none;
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  font-size: 0.95rem;
  transition: background 0.3s;
  flex-shrink: 0;
  white-space: nowrap;
  margin-left: 0;
  width: auto;
  margin-top: 10px;
}

.form-row p {
  margin: 0;
}

input.wpcf7-form-control.wpcf7-email.wpcf7-validates-as-required.wpcf7-text.wpcf7-validates-as-email.camposnews {
  margin-top: 8px;
}

#enviar_comentario:hover,
.footer-submit:hover {
  background-color: #c89106;
}

address {
  font-style: normal !important;
}

footer img.ajax-loader {
  display: none;
}

footer br {
  display: none;
}

footer .form-whats-btn {
  display: flex;
}

/* ========== RESPONSIVO MOBILE ========== */
@media (max-width: 768px) {
  input.wpcf7-form-control.wpcf7-tel.wpcf7-text.wpcf7-validates-as-tel.camposnews {
    width: 100%;
  }
  input#enviar_comentario {
    width: 100%;
    margin-top: 8px;
    margin-left: 0px;
  }
  .footer-col.redes {
    margin-top: -15px;
  }
  .site-footer {
    padding: 1rem 1rem 0.5rem;
  }
  footer p {
    margin-top: 0px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .footer-col,
  .footer-logo {
    align-items: flex-start;
  }
  .footer-form .form-row {
    flex-direction: column;
    align-items: stretch;
    gap: 7px;
  }
  .footer-form {
    flex-wrap: wrap;
  }
  #enviar_comentario,
  .footer-submit {
    width: 100%;
    margin-top: 10px;
  }
  .camposnews,
  #enviar_comentario {
    width: 100%;
  }
  .footer-social-icons {
    justify-content: flex-start;
  }
  .footer-col:not(:last-child) {
    margin-bottom: -2.5rem;
  }
  .footer-col h4 {
    margin-bottom: 0.5rem;
  }
}
@keyframes dropdownFade {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.propostas-wrapper {
  max-width: 1350px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.proposta-section {
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 2rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.proposta-section h2 {
  font-size: 1.75rem;
  color: #000;
  margin-bottom: 1rem;
  font-weight: 700;
}

.proposta-section p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.proposta-section a {
  color: #00457C;
  text-decoration: underline;
  word-break: break-word;
}

.proposta-share {
  text-align: center;
  margin-top: 1.5rem;
}

.proposta-share img {
  width: 32px;
  height: 32px;
  margin: 0 5px;
}

@media (max-width: 768px) {
  .proposta-section {
    padding: 1rem;
  }
  .proposta-section h2 {
    font-size: 1.5rem;
  }
  .proposta-section p {
    font-size: 0.95rem;
  }
}/*# sourceMappingURL=style.css.map */