@charset "UTF-8";
@font-face {
  font-family: "satoshibold";
  src: url("../fonts/satoshi-bold-webfont.woff2") format("woff2"), url("../fonts/satoshi-bold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "satoshiregular";
  src: url("../fonts/satoshi-regular-webfont.woff2") format("woff2"), url("../fonts/satoshi-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "satoshimedium";
  src: url("../fonts/satoshi-medium-webfont.woff2") format("woff2"), url("../fonts/satoshi-medium-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
:root {
  --primary-font: "satoshiregular";
  --second-font: "satoshibold";
  --medium-font: "satoshimedium";
  --primary-color: #51696f;
  --red: #ff0000;
  --semi-bold: 700;
  --med-bold: 600;
  --low-bold: 500;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border-radius: 50px;
  font-family: var(--second-font);
  font-size: 1rem;
  color: #ffffff;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  gap: 12px;
}
.btn svg {
  transition: transform 0.3s ease;
}
.btn:hover svg {
  transform: translateX(4px);
}
.btn.btn-blue {
  background-color: #269be3;
}
.btn.btn-blue:hover {
  background-color: #146293;
}
.btn.btn-yellow {
  background-color: #f5b400;
}
.btn.btn-yellow:hover {
  background-color: #cc9600;
}
.btn.btn-red {
  background-color: #cc000e;
}
.btn.btn-red:hover {
  background-color: hsla(356, 100%, 40%, 0.4);
}
.btn.btn-green-light {
  background-color: #8ac926;
}
.btn.btn-green-light:hover {
  background-color: #5f891a;
}
.btn.btn-green-dark {
  background-color: #5f891a;
}
.btn.btn-green-dark:hover {
  background-color: rgba(61, 82, 24, 0.5);
}

a {
  text-decoration: none;
}

.ab {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 8;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.bg_red {
  background-color: var(--red);
}

*:focus {
  outline: none;
}

.relative {
  position: relative;
}

.all {
  transition: all 0.4s ease;
}

ul li {
  list-style: none;
}

.wpcf7-not-valid {
  border: 1px solid #ff0000 !important;
  animation: shake 150ms 2 linear;
  -moz-animation: shake 150ms 2 linear;
  -webkit-animation: shake 150ms 2 linear;
  -o-animation: shake 150ms 2 linear;
}

.al-center {
  align-items: center;
}

@keyframes shake {
  0% {
    transform: translate(3px, 0);
  }
  50% {
    transform: translate(-3px, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}
.slick-dots li button:before {
  display: none;
}

.slick-prev:before,
.slick-next:before {
  display: none;
}

.slick-disabled {
  opacity: 0.4;
}

strong {
  font-weight: var(--semi-bold);
}

html {
  padding: 0;
  margin-top: 0 !important;
}

html,
body {
  overflow-x: hidden;
}

html.is-active {
  overflow: hidden;
}

h2 {
  font-family: var(--semi-bold);
  font-weight: 700;
  font-size: 28px;
}

.menu_img {
  position: fixed;
  right: 0;
  z-index: 8;
  width: 67%;
  background: url(../imgs/menu_img.jpg) no-repeat;
  height: 100vh;
  background-size: cover;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.menu_img.is-active {
  opacity: 1;
  visibility: visible;
}

#menu .logo {
  margin-inline: auto;
  margin-bottom: 3rem;
}
#menu .contato_menu {
  padding-left: 6rem;
  padding-top: 40px;
}
#menu .contato_menu a {
  color: #e5e2dd;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-weight: 600;
}
#menu .aviso {
  display: flex;
  font-family: var(--second-font);
  gap: 1.8rem;
  margin-top: 4rem;
}
#menu .aviso a {
  color: #e5e2dd;
  font-weight: 300;
  font-size: 10px;
  text-transform: uppercase;
  border-bottom: 1px solid #d9d9d9;
  padding-inline: 6px;
  padding-bottom: 6px;
}

body {
  font-family: var(--primary-font);
  box-sizing: border-box;
  font-size: 16px;
  font-weight: 400;
  color: var(--primary-color);
  background-color: #f8f9f9;
  padding-top: 104px;
}
body.is-active {
  overflow: hidden !important;
}

@media (max-width: 990px) {
  body {
    font-size: 14px;
  }
}
p {
  margin: 0.75rem 0;
  line-height: 26px;
}

.container {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding-inline: 0.95rem;
  position: relative;
}

@media (max-width: 1190px) {
  .container {
    max-width: 990px;
    padding-inline: 1rem;
  }
}
.container-large {
  max-width: 1400px;
}

@media (max-width: 1390px) {
  .container-large {
    max-width: 1210px;
  }
}
.container-space {
  max-width: 1240px;
}

.container-small-70 {
  max-width: 970px;
}

.container-small {
  max-width: 920px;
}

.container-litle {
  max-width: 840px;
}

.grid {
  display: grid;
}

.flex {
  display: flex;
}

.center {
  text-align: center;
}

.slick-dotted.slick-slider {
  margin-bottom: 0 !important;
}

h2 {
  font-weight: 700;
  font-family: var(--second-font);
  font-size: 32px;
  color: #17363f;
  margin-bottom: 20px;
}

.swiper .swiper-button-next,
.swiper .swiper-button-prev {
  width: 62px;
  height: 62px;
  z-index: 2;
}

.swiper .swiper-button-next:after,
.swiper .swiper-button-prev:after {
  display: none;
}

.hamburger {
  position: fixed;
  right: 60px;
  z-index: 99;
  top: 30px;
  transition: all 0.4s ease;
}
.hamburger.ativo {
  top: 15px;
  transform: scale(0.7);
}

.hamburger .line {
  width: 38px;
  height: 2px;
  border-radius: 2rem;
  background-color: #fff;
  display: block;
  margin: 10px auto;
  transition: all 0.3s ease-in-out;
}

.hamburger.is-active .line {
  background-color: #fff !important;
}

.hamburger.ativo .line {
  background-color: #3a5457;
}

.hamburger:hover {
  cursor: pointer;
}

.hamburger#hamburger-1.is-active .line:nth-child(2) {
  opacity: 0;
}

.hamburger#hamburger-1.is-active .line:nth-child(1) {
  transform: translateY(18px) rotate(45deg);
}

.hamburger#hamburger-1.is-active .line:nth-child(3) {
  transform: translateY(-6px) rotate(-49deg);
}

.vc-form {
  background: #fff;
  padding: 20px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
}

.vc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.vc-field label {
  display: block;
  font-weight: 600;
  font-size: 18px;
  color: #1f2937;
  margin-bottom: 8px;
}

.vc-field input[type=text],
.vc-field input[type=email],
.vc-field input[type=tel],
.vc-field textarea {
  width: 100%;
  border: 0;
  background: #f3f4f6;
  border-radius: 12px;
  padding: 20px 14px;
  font-size: 14px;
  outline: none;
}

.vc-field textarea {
  min-height: 110px;
  resize: vertical;
}

.vc-field input:focus,
.vc-field textarea:focus {
  border-color: #93c5fd;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.vc-full {
  grid-column: 1/-1;
}

.vc-moradia .wpcf7-form-control {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 6px;
}

.vc-moradia input[type=radio] {
  transform: scale(1.2);
}

.vc-actions {
  display: flex;
  justify-content: flex-end;
}

.vc-submit {
  background: #3e9be9 url(../imgs/aviao.svg) no-repeat 80%;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 14px 32px;
  font-weight: 700;
  font-size: 18px;
  width: 150px;
  text-align: left;
  cursor: pointer;
}

.wpcf7-spinner {
  position: absolute;
}

.vc-submit:hover {
  filter: brightness(0.95);
}

@media (max-width: 860px) {
  .vc-grid {
    grid-template-columns: 1fr;
  }
}
.divider {
  border: 1px solid #d1d5db;
  margin-block: 50px;
  margin-block-end: 0;
}

#pesquisar {
  margin-bottom: 6rem;
}
#pesquisar .divider {
  margin-block-end: 50px;
}
#pesquisar .an {
  margin-top: 50px;
}
#pesquisar .vc-search label {
  font-size: 18px;
  color: #1f2937;
  font-weight: 600;
  font-family: "Nunito", sans-serif;
}

#vagas a {
  color: #4b5563;
  text-decoration: underline;
}

.hero-slider {
  padding: 32px 0 0;
  overflow: hidden;
}
.hero-slider__container {
  position: relative;
  width: min(1560px, 100% - 64px);
  margin: 0 auto;
}
.hero-slider .swiper {
  overflow: hidden;
}
.hero-slider__nav {
  position: absolute;
  top: 43%;
  transform: translateY(-50%);
  z-index: 20;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 999px;
  background: #f1f1f3;
  color: #4a90e2;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: all 0.25s ease;
}
.hero-slider__nav:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.04);
}
.hero-slider__nav.swiper-button-disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.hero-slider__nav--prev {
  left: -28px;
}
.hero-slider__nav--next {
  right: -28px;
}
.hero-slider__pagination {
  position: absolute;
  bottom: 36px !important;
  left: 50% !important;
  transform: translateX(-50%);
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.hero-slider__pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 !important;
  background: #d9d9dd;
  opacity: 1;
  border-radius: 999px;
  transition: all 0.3s ease;
}
.hero-slider__pagination .swiper-pagination-bullet-active {
  width: 28px;
  background: #4a9ae8;
}

.hero-slide {
  position: relative;
  padding-bottom: 110px;
  padding-inline: 4rem;
}
.hero-slide__image {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}
.hero-slide__image img {
  display: block;
  width: 100%;
  height: 460px;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-slide__content {
  position: absolute;
  left: 90px;
  right: 90px;
  bottom: 0;
  z-index: 10;
  background: #f9fafb;
  border-radius: 24px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
  padding: 30px 30px 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.hero-slide__text {
  max-width: 860px;
}
.hero-slide__text h2 {
  margin: 0 0 18px;
  font-family: var(--second-font);
  font-size: 24px;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #243042;
}
.hero-slide__text p {
  margin: 0;
  line-height: 1.45;
  color: #4b5563;
  font-weight: 400;
}
.hero-slide__button {
  flex-shrink: 0;
  min-width: 192px;
  height: 39px;
  padding: 0 34px;
  border-radius: 999px;
  background: #3e9be9;
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 14px;
  font-weight: 800;
  transition: all 0.25s ease;
}
.hero-slide__button:hover {
  background: #3788d8;
  transform: translateY(-1px);
}
.hero-slide__button svg {
  flex-shrink: 0;
}

@media (max-width: 1400px) {
  .hero-slide__image img {
    height: 560px;
  }
  .hero-slide__content {
    left: 56px;
    right: 56px;
  }
  .hero-slide__text p {
    font-size: 19px;
  }
}
@media (max-width: 991px) {
  .hero-slider {
    padding: 24px 0 0;
  }
  .hero-slider__container {
    width: 100%;
  }
  .hero-slider__nav {
    width: 46px;
    height: 46px;
    top: 35%;
  }
  .hero-slider__nav--prev {
    left: 8px;
  }
  .hero-slider__nav--next {
    right: 8px;
  }
  .hero-slider__pagination {
    bottom: 26px !important;
  }
  .hero-slide {
    padding-bottom: 90px;
    padding-inline: 0;
  }
  .hero-slide__image img {
    height: 460px;
  }
  .hero-slide__content {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin: -48px 18px 0;
    padding: 28px 24px 62px;
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-slide__text {
    max-width: 100%;
  }
  .hero-slide__text h2 {
    font-size: 32px;
    margin-bottom: 14px;
  }
  .hero-slide__text p {
    font-size: 17px;
  }
  .hero-slide__button {
    min-width: auto;
    width: 100%;
    height: 56px;
    font-size: 18px;
  }
}
@media (max-width: 640px) {
  .hero-slide__image img {
    height: 300px;
  }
  .hero-slide__content {
    margin: -36px 12px 0;
    border-radius: 18px;
    padding: 20px;
  }
  .hero-slide__text h2 {
    font-size: 18px;
  }
  .hero-slide__text p {
    font-size: 15px;
    line-height: 1.5;
  }
}
#video {
  text-align: center;
}
#video h2 {
  font-size: 28px;
  font-family: var(--semi-bold);
  font-weight: 700;
  margin-bottom: 20px;
}
#video iframe {
  width: 784px;
  height: 373px;
  margin-top: 20px;
}

.support-network {
  padding: 40px 0 72px;
  margin-top: 80px;
}
.support-network__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}

.support-card {
  border-radius: 20px;
  padding: 20px;
  min-height: 290px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.support-card--green {
  background: #e6f5cc;
  border: 1px solid #8ac926;
}
.support-card--green .support-card__icon svg path {
  fill: #8ac926;
}
.support-card--green .support-card__title {
  color: #5f891a;
  font-family: var(--second-font);
}
.support-card--green .support-card__button {
  font-family: var(--second-font);
  background: #8ac926;
}
.support-card--yellow {
  background: #fff0c2;
  border: 1px solid #f5b400;
}
.support-card--yellow .support-card__icon svg path {
  fill: #f5b400;
}
.support-card--yellow .support-card__title {
  color: #cc9600;
  font-family: var(--second-font);
}
.support-card--yellow .support-card__button {
  font-family: var(--second-font);
  background: #cc9600;
}
.support-card--blue {
  background: #dbeefa;
}
.support-card--wide {
  grid-column: 1/-1;
  min-height: 160px;
  padding: 30px;
  display: grid;
  grid-template-columns: 90px auto 267px;
  align-items: center;
  gap: 30px;
  text-align: left;
}
.support-card--wide .support-card__icon {
  margin: 0;
  display: flex;
  justify-content: flex-start;
  width: 90px;
}
.support-card--wide .support-card__icon svg path {
  fill: #269be3;
}
.support-card--wide .support-card__content {
  max-width: 720px;
}
.support-card--wide .support-card__title {
  margin-bottom: 20px;
  text-align: center;
  color: #146293;
  font-family: var(--second-font);
}
.support-card--wide .support-card__text {
  margin: 0;
  max-width: 100%;
  text-align: center;
}
.support-card--wide .support-card__button {
  margin-top: 0;
  width: 100%;
  min-width: auto;
  align-self: center;
  background-color: #269be3;
  font-family: var(--second-font);
}
.support-card--wide .support-card__button:hover {
  background-color: #1b5f73;
}
.support-card__icon {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 96px;
}
.support-card__icon svg {
  display: block;
  max-width: 100%;
  height: auto;
}
.support-card__title {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
  color: #2d3d54;
}
.support-card__text {
  margin: 0;
  max-width: 560px;
  font-size: 14px;
  line-height: 1.45;
  color: #5b6677;
  font-weight: 400;
}
.support-card__button {
  margin-top: 14px;
  min-width: 243px;
  height: 39px;
  padding: 0 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.support-card__button:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}
.support-card__button svg {
  flex-shrink: 0;
}

@media (max-width: 1280px) {
  .support-card {
    padding: 38px 28px 28px;
    min-height: 420px;
  }
  .support-card__text {
    font-size: 19px;
  }
  .support-card__button {
    min-width: 320px;
    font-size: 18px;
  }
  .support-card--wide {
    grid-template-columns: 120px minmax(0, 1fr) auto;
    padding: 34px 32px;
  }
  .support-card--wide .support-card__button {
    min-width: 320px;
  }
}
@media (max-width: 991px) {
  .support-network__container {
    width: calc(100% - 32px);
  }
  .support-network__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .support-card {
    min-height: auto;
    border-radius: 24px;
    padding: 32px 22px 24px;
  }
  .support-card__icon {
    margin-bottom: 24px;
  }
  .support-card__title {
    font-size: 22px;
    margin-bottom: 18px;
  }
  .support-card__text {
    font-size: 17px;
    max-width: 100%;
  }
  .support-card__button {
    min-width: 100%;
    width: 100%;
    font-size: 17px;
    margin-top: 28px;
  }
  .support-card--wide {
    grid-column: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
    padding: 32px 22px 24px;
  }
  .support-card--wide .support-card__icon {
    justify-content: center;
    margin-bottom: 24px;
  }
  .support-card--wide .support-card__content {
    max-width: 100%;
  }
  .support-card--wide .support-card__title,
  .support-card--wide .support-card__text {
    text-align: center;
  }
  .support-card--wide .support-card__button {
    min-width: 100%;
    width: 100%;
    margin-top: 28px;
  }
}
#sbore_h .divider {
  margin-block-end: 50px;
}
#sbore_h .project-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 2rem;
}
#sbore_h .btn-project {
  min-width: 260px;
  height: 39px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}
#sbore_h .btn-project svg {
  flex-shrink: 0;
}
#sbore_h .btn-project:hover {
  transform: translateY(-1px);
}
#sbore_h .btn-project--yellow {
  min-width: 273px;
  background: #e8ba3f;
}
#sbore_h .btn-project--yellow:hover {
  background-color: #997710;
}
#sbore_h .btn-project--blue {
  min-width: 160px;
  background: #3e9be9;
}
#sbore_h .btn-project--blue:hover {
  background-color: #276292;
}
#sbore_h .grid {
  display: grid;
  grid-template-columns: 120px auto;
  gap: 40px;
  width: 1040px;
  max-width: 100%;
  margin-inline: auto;
  padding-top: 20px;
}
#sbore_h h2 {
  font-size: 32px;
}
#sbore_h .img img {
  border-radius: 10px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#saiba_h {
  background-color: #e7f3fd;
  padding-block: 50px;
  margin-top: 50px;
}
#saiba_h .grid {
  grid-template-columns: 1fr 1fr;
  width: 800px;
  margin-inline: auto;
  gap: 50px;
}
#saiba_h .box {
  padding: 20px;
  transition: all 0.4s ease;
}
#saiba_h .box h3 {
  font-size: 18px;
  font-family: var(--primary-font);
  margin-top: 14px;
}
#saiba_h .box .img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#saiba_h .box:hover {
  background-color: #fff;
  border-radius: 8px;
}
#saiba_h .box:hover h3 {
  width: -moz-max-content;
  width: max-content;
  border-bottom: 4px solid #e8ba3f;
}

.custom-breadcrumb {
  display: flex;
  align-items: center;
  font-family: sans-serif;
  font-size: 14px;
  padding: 20px 0 0;
  margin-bottom: 50px;
  margin-top: 58px;
}
.custom-breadcrumb a {
  text-decoration: none;
  color: #949ca5;
  transition: color 0.3s ease;
}
.custom-breadcrumb a:hover {
  color: #7a828a;
}
.custom-breadcrumb .separator {
  margin: 0 7px;
  color: #949ca5;
  font-weight: 300;
  transform: rotate(10deg);
}
.custom-breadcrumb .current-item {
  color: #e3bc5a;
  font-weight: 400;
}

@media (max-width: 768px) {
  .custom-breadcrumb {
    font-size: 14px;
  }
  .custom-breadcrumb .separator {
    margin: 0 10px;
  }
}
.o-que-fazemos {
  padding: 80px 20px 0;
  font-family: sans-serif;
}
.o-que-fazemos a {
  color: var(--primary-color);
  text-decoration: underline;
}
.o-que-fazemos .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
}
.o-que-fazemos .text-content {
  width: 60%;
}
.o-que-fazemos .text-content h2 {
  margin-top: 0;
  margin-bottom: 30px;
}
.o-que-fazemos .text-content p {
  font-size: 1rem;
  color: #4a4a4a;
  line-height: 1.6;
  text-align: justify;
}
.o-que-fazemos .text-content ul {
  margin: 20px 0;
  padding-left: 20px;
}
.o-que-fazemos .text-content ul li {
  font-size: 1rem;
  list-style-type: disc;
  margin-bottom: 10px;
}
.o-que-fazemos .text-content a {
  color: #4a4a4a;
  text-decoration: underline;
  font-weight: 600;
}
.o-que-fazemos .text-content a:hover {
  color: #000000;
}
.o-que-fazemos .image-content {
  width: 40%;
  margin-top: 5rem;
}
.o-que-fazemos .image-content img {
  width: 100%;
  height: 326px;
  border-radius: 12px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
  .o-que-fazemos .wrapper {
    flex-direction: column;
  }
  .o-que-fazemos .wrapper .text-content {
    width: 100%;
    margin-bottom: 40px;
  }
  .o-que-fazemos .wrapper .image-content {
    width: 100%;
  }
  .o-que-fazemos .wrapper .image-content img {
    width: 100%;
    max-height: 400px;
  }
}
#list_sobre .grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-direction: row;
}
#list_sobre .grid.invert {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  #list_sobre .grid {
    flex-direction: column-reverse;
  }
  #list_sobre .grid.invert {
    flex-direction: column-reverse;
  }
}

.vc-search label {
  font-weight: 600;
  display: block;
  margin: 0 0 10px;
}

.vc-search input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  font-size: 14px;
  outline: none;
}

.vc-search input:focus {
  background: #fff;
  border-color: #93c5fd;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
}

.vc-vaga-card {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 22px 22px;
  margin-top: 18px;
}

.vc-row {
  margin: 10px 0;
  line-height: 1.35;
}

.vc-muted {
  color: #6b7280;
  font-weight: 500;
}

.vc-link {
  color: #2563eb;
  font-weight: 700;
}

.vc-email {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.vc-email a {
  color: #111827;
  text-decoration: none;
  font-weight: 600;
}

.vc-copy {
  border: 0;
  background: transparent;
  color: #2563eb;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
}

.vc-divider {
  border-top: 1px solid #e5e7eb;
  margin: 16px 0;
}

@media (max-width: 860px) {
  .vc-email {
    align-items: flex-start;
  }
}
#encontre {
  background-color: #f3f4f6;
  min-height: 200px;
}

.ongs-accordion-section {
  padding: 60px 0;
}
.ongs-accordion-section .flex {
  justify-content: space-between;
}
@media (max-width: 990px) {
  .ongs-accordion-section .flex {
    display: block;
  }
}
.ongs-accordion-section .section-title {
  color: #269BE3;
  margin-bottom: 30px;
}
.ongs-accordion-section .search-box {
  position: relative;
  margin-bottom: 40px;
}
.ongs-accordion-section .search-box .search-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
}
.ongs-accordion-section .search-box input {
  width: 420px;
  padding: 16px;
  padding-inline-start: 40px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 1rem;
  background-color: #e5e7eb;
  color: #9ca3af;
  outline: none;
  font-weight: 500;
}
.ongs-accordion-section .search-box input::-moz-placeholder {
  color: #999;
}
.ongs-accordion-section .search-box input::placeholder {
  color: #999;
}
.ongs-accordion-section .accordion-item {
  border-bottom: 1px solid #e0e0e0;
}
.ongs-accordion-section .accordion-item .accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.3s;
}
.ongs-accordion-section .accordion-item .accordion-header:hover {
  background-color: #f8f8f8;
}
.ongs-accordion-section .accordion-item .accordion-header .state-name {
  font-size: 1.1rem;
  color: #333;
  font-weight: 500;
}
.ongs-accordion-section .accordion-item .accordion-header .arrow {
  font-family: "Material Icons";
  color: #999;
  transition: transform 0.3s;
}
.ongs-accordion-section .accordion-item .accordion-header.active .arrow {
  transform: rotate(180deg);
}
.ongs-accordion-section .accordion-item .accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.ongs-accordion-section .accordion-item .accordion-content.open {
  margin-bottom: 50px;
  padding-bottom: 20px;
}
.ongs-accordion-section .ong-card {
  border: 1px solid #E3E6E7;
  border-radius: 8px;
  padding: 30px;
  margin-top: 20px;
  background-color: #F1F3F3;
}
.ongs-accordion-section .ong-card .ong-name {
  color: #269BE3;
  font-size: 16px;
  margin: 0 0 15px 0;
  font-family: var(--second-font);
}
.ongs-accordion-section .ong-card .ong-description {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.5;
}
.ongs-accordion-section .ong-card .ong-details {
  font-size: 0.9rem;
  color: #666;
  border-top: 1px solid #C5CDCF;
  padding-top: 15px;
}
.ongs-accordion-section .ong-card .ong-details .details-label {
  color: #51696F;
  font-family: var(--second-font);
  margin-bottom: 10px;
  font-size: 14px;
}
.ongs-accordion-section .ong-card .ong-details p {
  margin: 5px 0;
}
.ongs-accordion-section .ong-card .ong-details p strong {
  color: #9ca3af;
  font-weight: 500;
}
.ongs-accordion-section .ong-card .ong-details p a {
  color: #333;
  text-decoration: none;
}
.ongs-accordion-section .ong-card .ong-details p a:hover {
  text-decoration: underline;
}

.impact-cases {
  padding: 50px 0;
  background: #edf7fd;
  margin-top: 50px;
}
.impact-cases__header {
  max-width: 1240px;
  margin: 0 auto 64px;
  text-align: center;
}
.impact-cases__title {
  margin: 0 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 58px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1f2d44;
}
.impact-cases__subtitle {
  margin: 0 auto;
  max-width: 1240px;
  font-size: 16px;
  line-height: 1.5;
  color: #5d6878;
  font-weight: 400;
}
.impact-cases .swiper {
  overflow: visible;
}
.impact-cases .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 44px;
  transform: none !important;
}
.impact-cases .swiper-slide {
  height: auto;
  width: auto !important;
}
.impact-cases__pagination {
  display: none;
}

.impact-card {
  position: relative;
  height: 100%;
  border-radius: 8px;
  background: transparent;
  padding: 1rem;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}
.impact-card__link {
  position: absolute;
  inset: 0;
  z-index: 5;
  border-radius: 28px;
}
.impact-card__image {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1.4/1;
  background: #d8d8d8;
  transition: transform 0.28s ease;
}
.impact-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.45s ease;
}
.impact-card__content {
  position: relative;
  padding: 22px 0 0;
  transition: padding 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}
.impact-card__title {
  margin: 0;
  font-size: 16px;
  line-height: 1.22;
  font-family: var(--second-font);
  color: #1f2937;
}
.impact-card__line {
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: #e7b83c;
  margin: 12px 0;
  transition: width 0.3s ease;
}
.impact-card__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
}
.impact-card:hover {
  transform: translateY(-8px);
  background-color: white;
}
.impact-card:hover .impact-card__image img {
  transform: scale(1.03);
}
.impact-card:hover .impact-card__line {
  width: 100%;
}

@media (max-width: 1200px) {
  .impact-cases__title {
    font-size: 46px;
  }
  .impact-cases__subtitle {
    font-size: 19px;
  }
  .impact-cases .swiper-wrapper {
    gap: 28px;
  }
  .impact-card__title {
    font-size: 22px;
  }
  .impact-card__text {
    font-size: 17px;
  }
}
@media (max-width: 767px) {
  .impact-cases {
    padding: 56px 0 72px;
    overflow: hidden;
  }
  .impact-cases__container {
    width: calc(100% - 32px);
  }
  .impact-cases__header {
    margin-bottom: 32px;
  }
  .impact-cases__title {
    font-size: 34px;
    margin-bottom: 16px;
  }
  .impact-cases__subtitle {
    font-size: 17px;
    line-height: 1.45;
  }
  .impact-cases .swiper {
    overflow: visible;
  }
  .impact-cases .swiper-wrapper {
    display: flex;
    gap: 0;
    transform: translate3d(0, 0, 0);
  }
  .impact-cases .swiper-slide {
    width: 100% !important;
    height: auto;
  }
  .impact-cases__pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
    position: static;
  }
  .impact-cases__pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 5px !important;
    border-radius: 999px;
    background: #d4d8de;
    opacity: 1;
    transition: all 0.28s ease;
  }
  .impact-cases__pagination .swiper-pagination-bullet-active {
    width: 28px;
    background: #4a9ae8;
  }
  .impact-card {
    background: #f6f6f7;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.12);
  }
  .impact-card__link {
    border-radius: 24px;
  }
  .impact-card__image {
    margin: 18px 18px 0;
    border-radius: 20px;
    aspect-ratio: 1.48/1;
    background: #d3d3d3;
  }
  .impact-card__content {
    padding: 24px 18px 22px;
    background: #f6f6f7;
  }
  .impact-card__title {
    font-size: 22px;
    line-height: 1.18;
  }
  .impact-card__line {
    width: 100%;
    height: 8px;
    margin: 16px 0 20px;
    background: #e7b83c;
  }
  .impact-card__text {
    font-size: 16px;
    line-height: 1.5;
  }
  .impact-card:hover {
    transform: none;
  }
  .impact-card:hover .impact-card__content {
    margin-top: 0;
    padding: 24px 18px 22px;
    box-shadow: none;
    border-radius: 0;
  }
  .impact-card:hover .impact-card__image img {
    transform: none;
  }
}
.news-slider {
  padding: 3rem 0 50px 0;
  background: #f9fafb;
  overflow: hidden;
}
.news-slider__header {
  margin-bottom: 52px;
  text-align: center;
}
.news-slider__header h2 {
  font-family: var(--second-font);
}
.news-slider__wrap {
  position: relative;
}
.news-slider .swiper {
  overflow: visible;
}
.news-slider .swiper-slide {
  height: auto;
  opacity: 0.22;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.news-slider .swiper-slide-active,
.news-slider .swiper-slide-next {
  opacity: 1;
}
.news-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 64px;
  height: 64px;
  border: 0;
  border-radius: 999px;
  background: #f0f0f2;
  color: #4b98e5;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.25s ease;
}
.news-slider__nav:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.04);
}
.news-slider__nav.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}
.news-slider__nav--prev {
  left: -76px;
}
.news-slider__nav--next {
  right: -76px;
}

.news-card {
  min-height: 362px;
  background: #f5f5f6;
  border-radius: 20px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.news-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}
.news-card__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(62, 155, 233, 0.1);
  color: #3e9be9;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.news-card__icon {
  color: #4397e8;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.news-card__icon:hover {
  transform: scale(1.06);
  opacity: 0.85;
}
.news-card__body {
  flex: 1;
  margin-bottom: 34px;
}
.news-card__body h3 {
  margin: 0 0 24px;
  color: #1f2937;
  font-size: 18px;
  font-family: var(--second-font);
}
.news-card__body p {
  margin: 0;
  font-weight: 400;
}
.news-card__footer {
  margin-top: auto;
}
.news-card__button {
  width: 100%;
  min-height: 54px;
  padding: 16px 0;
  border-radius: 999px;
  background: #3e9be9;
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 16px;
  font-weight: 500;
  transition: background 0.25s ease, transform 0.25s ease;
}
.news-card__button:hover {
  background: #3388d8;
  transform: translateY(-1px);
}

@media (max-width: 1600px) {
  .news-slider__nav--prev {
    left: -32px;
  }
  .news-slider__nav--next {
    right: -32px;
  }
}
@media (max-width: 1200px) {
  .news-slider {
    padding: 72px 0 64px;
  }
  .news-slider__container {
    width: calc(100% - 48px);
  }
  .news-slider__header {
    margin-bottom: 40px;
  }
  .news-slider__header h2 {
    font-size: 48px;
  }
  .news-card {
    min-height: 380px;
    padding: 32px 28px 28px;
  }
  .news-card__body h3 {
    font-size: 21px;
  }
  .news-card__body p {
    font-size: 18px;
  }
  .news-card__button {
    min-height: 62px;
    font-size: 19px;
  }
}
@media (max-width: 991px) {
  .news-slider__nav {
    width: 52px;
    height: 52px;
  }
  .news-slider__nav--prev {
    left: -12px;
  }
  .news-slider__nav--next {
    right: -12px;
  }
  .news-slider .swiper {
    overflow: hidden;
  }
  .news-slider .swiper-slide {
    opacity: 1;
  }
}
@media (max-width: 767px) {
  .news-slider {
    padding: 56px 0;
  }
  .news-slider__container {
    width: calc(100% - 32px);
  }
  .news-slider__header {
    margin-bottom: 28px;
  }
  .news-slider__header h2 {
    font-size: 34px;
  }
  .news-slider__nav {
    display: none;
  }
  .news-card {
    min-height: 340px;
    border-radius: 22px;
    padding: 24px 20px 20px;
  }
  .news-card__top {
    margin-bottom: 18px;
  }
  .news-card__tag {
    min-height: 30px;
    font-size: 12px;
    padding: 7px 12px;
  }
  .news-card__body {
    margin-bottom: 24px;
  }
  .news-card__body h3 {
    margin-bottom: 16px;
    font-size: 18px;
  }
  .news-card__body p {
    font-size: 16px;
    line-height: 1.45;
  }
  .news-card__button {
    min-height: 54px;
    font-size: 17px;
    gap: 10px;
  }
}
.wpcf7 {
  width: 100%;
}

.wpcf7 form {
  margin: 0;
}

.wpcf7-spinner {
  margin: 12px 0 0 12px;
}

.wpcf7-response-output {
  margin: 20px 0 0 !important;
  padding: 12px 16px !important;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.5;
}

.wpcf7-not-valid-tip {
  margin-top: 8px;
  font-size: 12px !important;
  color: #dc2626;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.contact-list li {
  margin: 0;
  padding: 0;
}
.contact-list a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #3e9be9;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
}
.contact-list a:hover {
  text-decoration: underline;
}
.contact-list__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #3e9be9;
}

.contact-form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 24px;
}
.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-form__field--full {
  grid-column: 1/-1;
}
.contact-form__field label {
  color: #1f2937;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 500;
}
.contact-form__field input,
.contact-form__field textarea {
  width: 100%;
  border: 1px solid #d9dde3;
  background: #f7f7f8;
  color: #1f2937;
  font-size: 14px;
  font-weight: 400;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.contact-form__field input::-moz-placeholder, .contact-form__field textarea::-moz-placeholder {
  color: #9ca3af;
}
.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: #9ca3af;
}
.contact-form__field input:focus,
.contact-form__field textarea:focus {
  border-color: #3e9be9;
  box-shadow: 0 0 0 3px rgba(62, 155, 233, 0.12);
}
.contact-form__field input {
  height: 39px;
  border-radius: 999px;
  padding: 0 20px;
}
.contact-form__field textarea {
  height: 83px;
  border-radius: 20px;
  padding: 16px;
  resize: vertical;
}
.contact-form__actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 24px;
}
.contact-form__submit {
  min-width: 264px;
  height: 52px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  background: #3e9be9;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}
.contact-form__submit:hover {
  background: #3388d8;
  transform: translateY(-1px);
}

@media (max-width: 1200px) {
  .contact-section {
    padding: 64px 0 72px;
  }
  .contact-section__container {
    width: calc(100% - 48px);
  }
  .contact-section__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-section__info h2 {
    font-size: 48px;
    margin-bottom: 28px;
  }
  .contact-section__info > p {
    max-width: 100%;
    font-size: 19px;
    margin-bottom: 36px;
  }
  .contact-section__form-wrap {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .contact-section {
    padding: 48px 0 56px;
  }
  .contact-section__container {
    width: calc(100% - 32px);
  }
  .contact-section__info h2 {
    font-size: 34px;
    margin-bottom: 22px;
  }
  .contact-section__info > p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 28px;
  }
  .contact-section__contact h3 {
    font-size: 24px;
  }
  .contact-section__form-wrap {
    border-radius: 20px;
    padding: 20px 16px 16px;
  }
  .contact-list a {
    font-size: 15px;
    align-items: flex-start;
  }
  .contact-form__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .contact-form__field label {
    font-size: 15px;
  }
  .contact-form__field input {
    height: 48px;
  }
  .contact-form__field textarea {
    min-height: 120px;
    border-radius: 18px;
  }
  .contact-form__actions {
    margin-top: 20px;
  }
  .contact-form__submit {
    width: 100%;
    min-width: 0;
  }
}
.site-footer {
  background: #f3f4f6;
  padding: 50px 0 60px;
  color: #51696f;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) minmax(220px, 0.75fr) minmax(420px, 1.45fr);
  gap: 72px;
  align-items: start;
}
.site-footer__brand {
  max-width: 520px;
}
.site-footer__brand p {
  margin: 34px 0 0;
}
.site-footer__logo {
  display: inline-block;
  text-decoration: none;
}
.site-footer__logo img {
  display: block;
  max-width: 320px;
  width: 100%;
  height: auto;
}
.site-footer__nav h3 {
  margin: 0 0 28px;
  color: #17363f;
  font-family: var(--second-font);
  font-size: 16px;
  font-weight: 700;
}
.site-footer__nav ul {
  margin: 0;
  padding-left: 34px;
  color: #5f6876;
}
.site-footer__nav li {
  margin: 0 0 6px;
  color: #51696f;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 400;
  list-style: disc;
}
.site-footer__nav a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}
.site-footer__nav a:hover {
  color: #3e9be9;
}
.site-footer__partners h3 {
  margin: 0 0 0;
  color: #4b5563;
  font-family: var(--second-font);
  font-size: 18px;
  font-weight: 700;
}
.site-footer__partners-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 48px;
  align-items: start;
}
.site-footer__partner {
  min-width: 0;
}
.site-footer__partner-logo {
  display: inline-flex;
  align-items: center;
  min-height: 118px;
  text-decoration: none;
}
.site-footer__partner-logo img {
  display: block;
  max-width: 100%;
  height: auto;
  max-height: 92px;
  -o-object-fit: contain;
     object-fit: contain;
}
.site-footer__social {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.site-footer__social a {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #e6e8ec;
  color: #a0a7b4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.25s ease;
}
.site-footer__social a:hover {
  background: #3e9be9;
  color: #ffffff;
  transform: translateY(-1px);
}
.site-footer__social a svg {
  width: 30px;
  height: 30px;
  display: block;
}

@media (max-width: 1400px) {
  .site-footer__grid {
    grid-template-columns: 1fr 0.9fr 1.3fr;
    gap: 48px;
  }
  .site-footer__brand p {
    font-size: 19px;
  }
  .site-footer__partners-grid {
    gap: 32px;
  }
}
@media (max-width: 1200px) {
  .site-footer {
    padding: 64px 0;
  }
  .site-footer__container {
    width: calc(100% - 48px);
  }
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .site-footer__brand {
    max-width: 100%;
  }
  .site-footer__brand p {
    max-width: 720px;
    margin-top: 24px;
  }
  .site-footer__partners-grid {
    grid-template-columns: repeat(2, minmax(240px, 1fr));
  }
}
@media (max-width: 767px) {
  .site-footer {
    padding: 48px 0 56px;
  }
  .site-footer__container {
    width: calc(100% - 32px);
  }
  .site-footer__grid {
    gap: 36px;
  }
  .site-footer__logo img {
    max-width: 240px;
  }
  .site-footer__brand p {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.6;
  }
  .site-footer__nav h3, .site-footer__partners h3 {
    margin-bottom: 18px;
    font-size: 26px;
  }
  .site-footer__nav ul {
    padding-left: 22px;
  }
  .site-footer__nav li {
    font-size: 16px;
  }
  .site-footer__partners-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .site-footer__partner-logo {
    min-height: auto;
    margin-bottom: 18px;
  }
  .site-footer__partner-logo img {
    max-height: 74px;
  }
  .site-footer__social {
    gap: 10px;
  }
  .site-footer__social a {
    width: 38px;
    height: 38px;
  }
}
.cta-hiring {
  padding: 8px 0 44px;
}
.cta-hiring__container {
  width: min(1440px, 100% - 96px);
  margin: 0 auto;
}
.cta-hiring__content {
  max-width: 1400px;
}
.cta-hiring__text {
  margin-bottom: 34px;
}
.cta-hiring__text p {
  margin: 0 0 18px;
}
.cta-hiring__text p:last-child {
  margin-bottom: 0;
}
.cta-hiring__actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.cta-hiring__button {
  min-width: 223px;
  height: 44px;
  padding: 0 26px 0 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.cta-hiring__button svg {
  flex-shrink: 0;
}
.cta-hiring__button:hover {
  transform: translateY(-1px);
}
.cta-hiring__button--primary {
  background: #3e9be9;
  color: #ffffff;
}
.cta-hiring__button--primary:hover {
  background: #276292;
}
.cta-hiring__button--secondary {
  background: #e8ba3f;
  color: #ffffff;
  min-width: 278px;
}
.cta-hiring__button--secondary:hover {
  background: #997710;
}

@media (max-width: 1200px) {
  .cta-hiring {
    padding: 16px 0 40px;
  }
  .cta-hiring__container {
    width: calc(100% - 48px);
  }
  .cta-hiring h2 {
    font-size: 42px;
    margin-bottom: 26px;
  }
  .cta-hiring__text {
    margin-bottom: 28px;
  }
  .cta-hiring__text p {
    font-size: 17px;
  }
}
@media (max-width: 767px) {
  .cta-hiring {
    padding: 8px 0 32px;
  }
  .cta-hiring__container {
    width: calc(100% - 32px);
  }
  .cta-hiring h2 {
    font-size: 31px;
    line-height: 1.14;
    margin-bottom: 22px;
  }
  .cta-hiring__text {
    margin-bottom: 24px;
  }
  .cta-hiring__text p {
    font-size: 16px;
    line-height: 1.55;
    margin-bottom: 16px;
  }
  .cta-hiring__actions {
    gap: 14px;
    flex-direction: column;
    align-items: stretch;
  }
  .cta-hiring__button {
    width: 100%;
    min-width: 0;
    justify-content: center;
  }
  .cta-hiring__button--secondary {
    min-width: 0;
  }
}
.ecosystem-video {
  padding: 0 0 60px;
}
.ecosystem-video__container {
  text-align: center;
}
.ecosystem-video__player {
  margin-bottom: 38px;
}
.ecosystem-video__iframe {
  position: relative;
  width: 784px;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #cfd3d9;
  margin-top: 30px;
  margin-inline: auto;
}
.ecosystem-video__iframe iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 1200px) {
  .ecosystem-video {
    padding: 64px 0 52px;
  }
  .ecosystem-video__container {
    width: calc(100% - 48px);
  }
  .ecosystem-video__title {
    font-size: 38px;
    margin-bottom: 34px;
  }
  .ecosystem-video__player {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .ecosystem-video {
    padding: 48px 0 40px;
  }
  .ecosystem-video__container {
    width: calc(100% - 32px);
  }
  .ecosystem-video__title {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 24px;
  }
  .ecosystem-video__player {
    margin-bottom: 22px;
  }
  .ecosystem-video__text {
    font-size: 16px;
    line-height: 1.7;
  }
}
.guided-path {
  padding: 0 0 2rem;
}
.guided-path__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.number {
  margin-block: 30px;
}
.number .grid {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  padding-inline-start: 8rem;
  gap: 45px;
}
.number .grid span {
  color: #cfe6fa;
  font-family: var(--second-font);
  font-size: 28px;
  display: flex;
  gap: 45px;
  align-items: center;
}
.guided-step {
  min-width: 0;
}
.guided-step__top {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 42px;
  min-height: 52px;
}
.guided-step__number {
  flex: 0 0 auto;
  color: #c6def7;
  font-family: var(--second-font);
  font-size: 56px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.guided-step__line {
  flex: 1 1 auto;
  color: #d8dde4;
  display: flex;
  align-items: center;
}
.guided-step__line svg {
  display: block;
  width: 100%;
  height: 24px;
}
.guided-step--last .guided-step__top {
  justify-content: flex-end;
}
.guided-step__card {
  position: relative;
  min-height: 264px;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 26px;
  padding: 18px 30px 10px;
  text-align: center;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.guided-step__card p {
  line-height: 20px;
}
.guided-step__icon img {
  height: 68px;
}
.guided-step h3 {
  margin: 0 0 28px;
  color: #1f2937;
  font-family: var(--second-font);
  font-size: 18px;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.02em;
}

@media (max-width: 1400px) {
  .guided-path__header h2 {
    font-size: 52px;
  }
  .guided-path__header p {
    font-size: 20px;
  }
  .guided-path__grid {
    gap: 24px;
  }
  .guided-step__number {
    font-size: 48px;
  }
  .guided-step__card {
    min-height: 360px;
    padding: 88px 28px 34px;
  }
  .guided-step h3 {
    font-size: 28px;
  }
  .guided-step p {
    font-size: 17px;
  }
}
@media (max-width: 1100px) {
  .guided-path {
    padding: 64px 0 72px;
  }
  .guided-path__container {
    width: calc(100% - 40px);
  }
  .guided-path__header {
    margin-bottom: 40px;
  }
  .guided-path__header h2 {
    font-size: 42px;
    margin-bottom: 20px;
  }
  .guided-path__header p {
    font-size: 18px;
  }
  .guided-path__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 24px;
  }
  .guided-step__top {
    margin-bottom: 34px;
  }
  .guided-step--last .guided-step__top {
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .guided-path {
    padding: 48px 0 56px;
  }
  .guided-path__container {
    width: calc(100% - 32px);
  }
  .guided-path__header {
    margin-bottom: 30px;
  }
  .guided-path__header h2 {
    font-size: 30px;
    line-height: 1.15;
    margin-bottom: 16px;
  }
  .guided-path__header p {
    font-size: 16px;
    line-height: 1.6;
  }
  .guided-path__grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .guided-step__top {
    margin-bottom: 26px;
    gap: 14px;
  }
  .guided-step__number {
    font-size: 40px;
  }
  .guided-step__line svg {
    height: 18px;
  }
  .guided-step__card {
    min-height: auto;
    padding: 82px 22px 28px;
    border-radius: 22px;
  }
  .guided-step__icon {
    width: 62px;
    height: 62px;
    top: -24px;
  }
  .guided-step h3 {
    margin-bottom: 18px;
    font-size: 24px;
    line-height: 1.1;
  }
  .guided-step p {
    font-size: 16px;
    line-height: 1.5;
  }
}
.territory-section {
  padding: 72px 0 88px;
}
.territory-section__content {
  display: grid;
  grid-template-columns: 696px 1fr;
  gap: 64px;
  align-items: center;
}
.territory-section__info {
  max-width: 980px;
}
.territory-section__button {
  max-width: -moz-max-content;
  max-width: max-content;
  height: 34px;
  padding: 0 32px 0 46px;
  border-radius: 999px;
  background: #e5b534;
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.25s ease, transform 0.25s ease;
}
.territory-section__button:hover {
  background: #d8a928;
  transform: translateY(-1px);
}
.territory-section__button svg {
  flex-shrink: 0;
}
.territory-section__map-card {
  background: #1f5686;
  border-radius: 32px;
  min-height: 455px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
}
.territory-section__map {
  width: 444px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.territory-section__map img {
  display: block;
  max-width: 100%;
  max-height: 560px;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (max-width: 1400px) {
  .territory-section__content {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 560px);
    gap: 42px;
  }
  .territory-section__info h2 {
    font-size: 50px;
  }
  .territory-section__info p {
    font-size: 19px;
  }
  .territory-section__button {
    min-width: 400px;
    font-size: 18px;
  }
  .territory-section__map-card {
    min-height: 560px;
    padding: 36px;
  }
  .territory-section__map img {
    max-height: 460px;
  }
}
@media (max-width: 1100px) {
  .territory-section {
    padding: 64px 0 72px;
  }
  .territory-section__container {
    width: calc(100% - 40px);
  }
  .territory-section__content {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .territory-section__info {
    max-width: 100%;
  }
  .territory-section__info h2 {
    font-size: 42px;
    margin-bottom: 28px;
  }
  .territory-section__info p {
    max-width: 100%;
    font-size: 18px;
  }
  .territory-section__info p:last-of-type {
    margin-bottom: 34px;
  }
  .territory-section__map-card {
    min-height: 480px;
  }
}
@media (max-width: 767px) {
  .territory-section {
    padding: 48px 0 56px;
  }
  .territory-section__container {
    width: calc(100% - 32px);
  }
  .territory-section__content {
    gap: 28px;
  }
  .territory-section__info h2 {
    font-size: 30px;
    line-height: 1.15;
    margin-bottom: 22px;
  }
  .territory-section__info p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  .territory-section__info p:last-of-type {
    margin-bottom: 28px;
  }
  .territory-section__button {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    height: 54px;
    padding: 0 20px;
    font-size: 16px;
    text-align: center;
  }
  .territory-section__map-card {
    min-height: 320px;
    border-radius: 24px;
    padding: 24px;
  }
  .territory-section__map img {
    max-height: 260px;
  }
}
.territory-section {
  padding: 72px 0 88px;
  background: #f3f3f5;
}
.territory-section__container {
  width: min(1600px, 100% - 48px);
  margin: 0 auto;
}
.territory-section__map-view.is-active, .territory-section__results-view.is-active {
  display: block;
}
.territory-section__content {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(420px, 680px);
  gap: 64px;
  align-items: center;
}
.territory-section__info h2 {
  margin: 0 0 38px;
  color: #243042;
  font-family: var(--second-font);
  font-size: 64px;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.territory-section__info p {
  margin: 0 0 28px;
  color: #5f6876;
  font-size: 22px;
  line-height: 1.5;
  font-weight: 400;
}
.territory-section__info p:last-of-type {
  margin-bottom: 44px;
}
.territory-section__button {
  min-width: 476px;
  max-width: -moz-max-content;
  max-width: max-content;
  height: 58px;
  padding: 0 32px 0 46px;
  border-radius: 999px;
  background: #e5b534;
  color: #ffffff;
  border: 0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}
.territory-section__button:hover {
  background: #d8a928;
  transform: translateY(-1px);
}
.territory-section__map-card {
  background: #1f5686;
  border-radius: 32px;
  min-height: 690px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
}
.territory-section__map {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.territory-section__map svg {
  width: 100%;
  height: auto;
  max-width: 560px;
}

.territory-map__state {
  fill: #cfe6fa;
  stroke: #eef4fb;
  stroke-width: 1.2;
  cursor: pointer;
  transition: fill 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}
.territory-map__state:hover {
  fill: #e5b534;
}
.territory-map__state.is-active {
  fill: #f1bf41;
}

.territory-results__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}
.territory-results__header h2 {
  margin: 0;
  color: #243042;
  font-family: var(--second-font);
  font-size: 54px;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.territory-results__back {
  border: 0;
  background: transparent;
  color: #9aa3b1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.25s ease;
}
.territory-results__back:hover {
  color: #243042;
}
.territory-results__list {
  display: grid;
  gap: 34px;
}
.territory-results__loading, .territory-results__error, .territory-results__empty {
  padding: 24px;
  border: 1px solid #d8dde4;
  border-radius: 20px;
  color: #5f6876;
  background: #f7f7f8;
}

.ong-card {
  background: #f5f5f6;
  border: 1px solid #d8dde4;
  border-radius: 18px;
  padding: 34px 34px 28px;
}
.ong-card__title {
  margin: 0 0 18px;
  color: #caa02a;
  font-family: var(--second-font);
  font-size: 26px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
}
.ong-card__description {
  color: #5f6876;
  font-size: 18px;
  line-height: 1.55;
}
.ong-card__description p {
  margin: 0 0 10px;
}
.ong-card__description p:last-child {
  margin-bottom: 0;
}
.ong-card__divider {
  height: 1px;
  background: #d8dde4;
  margin: 18px 0 18px;
}
.ong-card__info h4 {
  margin: 0 0 14px;
  color: #4c5563;
  font-family: var(--second-font);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
}
.ong-card__meta {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.ong-card__meta li {
  color: #5f6876;
  font-size: 16px;
  line-height: 1.5;
}
.ong-card__meta strong {
  color: #9aa3b1;
  font-weight: 600;
  margin-right: 4px;
}
.ong-card__meta a {
  color: #4c5563;
  text-decoration: underline;
}
.ong-card__extra {
  margin-top: 14px;
  color: #5f6876;
  font-size: 15px;
  line-height: 1.6;
}
.ong-card__extra p {
  margin: 0 0 8px;
}

@media (max-width: 1100px) {
  .territory-section__content {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .territory-section__info h2 {
    font-size: 42px;
  }
  .territory-section__info p {
    font-size: 18px;
  }
  .territory-section__map-card {
    min-height: 480px;
  }
  .territory-results__header {
    flex-direction: column;
    align-items: flex-start;
  }
  .territory-results__header h2 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .territory-section {
    padding: 48px 0 56px;
  }
  .territory-section__container {
    width: calc(100% - 32px);
  }
  .territory-section__info h2 {
    font-size: 30px;
    margin-bottom: 22px;
  }
  .territory-section__info p {
    font-size: 16px;
  }
  .territory-section__info p:last-of-type {
    margin-bottom: 28px;
  }
  .territory-section__button {
    width: 100%;
    min-width: 0;
    height: 54px;
    padding: 0 20px;
    font-size: 16px;
  }
  .territory-section__map-card {
    min-height: 320px;
    border-radius: 24px;
    padding: 20px;
  }
  .territory-results__header {
    margin-bottom: 24px;
  }
  .territory-results__header h2 {
    font-size: 28px;
  }
  .ong-card {
    padding: 22px 20px 20px;
  }
  .ong-card__title {
    font-size: 22px;
  }
  .ong-card__description {
    font-size: 16px;
  }
  .ong-card__meta li {
    font-size: 15px;
  }
}
.ong-locator {
  padding: 0 0 2rem;
}
.ong-locator__grid {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 768px) {
  .ong-locator__grid {
    flex-direction: column;
  }
}
.ong-locator__text {
  flex: 1;
}
.ong-locator__title {
  font-size: 42px;
  color: #2d4b6b;
  margin-bottom: 25px;
  font-weight: 700;
}
.ong-locator__description {
  font-size: 18px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 20px;
}
.ong-locator__btn {
  display: inline-block;
  background-color: #e3bc5d;
  color: #fff;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: filter 0.3s;
}
.ong-locator__btn:hover {
  filter: brightness(0.9);
}
.ong-locator__map-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
}
.ong-locator__map-bg {
  background-color: #2d4b6b;
  padding: 40px;
  border-radius: 30px;
  width: 100%;
  max-width: 500px;
}
.ong-locator__map-bg svg {
  width: 100%;
  height: auto;
}
.ong-locator__map-bg svg .state {
  fill: #cfe6fa;
  stroke: #2d4b6b;
  stroke-width: 0.5;
  transition: fill 0.3s, transform 0.2s;
  cursor: pointer;
}
.ong-locator__map-bg svg .state:hover {
  fill: #f5b400 !important;
}
.ong-locator__results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.ong-locator__results-title {
  font-size: 32px;
  color: #2d4b6b;
}
.ong-locator__back-btn {
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  text-decoration: underline;
}

.ong-card {
  background: #fdfdfd;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 20px;
}
.ong-card__name {
  color: #b8952d;
  text-transform: uppercase;
  font-size: 20px;
  margin-bottom: 15px;
}
.ong-card__text {
  font-size: 16px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 20px;
}
.ong-card__info {
  font-size: 14px;
  border-top: 1px solid #eee;
  padding-top: 15px;
}
.ong-card__info p {
  margin-bottom: 5px;
}
.ong-card__info a {
  color: #2d4b6b;
  font-weight: bold;
}

.ong-locator__grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
@media (max-width: 991px) {
  .ong-locator__grid {
    flex-direction: column;
    text-align: center;
  }
}
.ong-locator__text {
  flex: 1;
}
.ong-locator__text h2 {
  font-size: 28px;
  line-height: 1.2;
  color: #17363f;
  margin-bottom: 30px;
}
.ong-locator__text p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--primary-color);
  margin-bottom: 20px;
}
.ong-locator__text p strong {
  font-family: var(--second-font);
}
.ong-locator__btn {
  display: inline-flex;
  align-items: center;
  background-color: #f5b400;
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-family: var(--second-font);
  font-size: 16px;
  transition: background 0.3s ease;
  margin-top: 2rem;
}
.ong-locator__btn:hover {
  background-color: #cc9600;
}
.ong-locator__btn i.icon-arrow {
  margin-left: 10px;
}
.ong-locator__map-wrapper {
  flex: 1;
  width: 100%;
  max-width: 500px;
}
.ong-locator__map-bg {
  background-color: #2d4b6b;
  padding: 40px;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ong-locator__map-bg svg.map {
  width: 100%;
  height: auto;
}
.ong-locator__map-bg svg.map .state-link {
  outline: none;
  text-decoration: none;
}
.ong-locator__map-bg svg.map .state-link .shape {
  fill: #dbeefa;
  stroke: #2d4b6b;
  stroke-width: 0.8;
  transition: fill 0.3s ease;
}
.ong-locator__map-bg svg.map .state-link .label-state {
  fill: #2d4b6b;
  font-size: 11px;
  font-weight: bold;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.ong-locator__map-bg svg.map .state-link.has-content .shape {
  fill: #dbeefa;
  cursor: pointer;
}
.ong-locator__map-bg svg.map .state-link.has-content:hover .shape {
  fill: #f5b400 !important;
}

#container-resultados {
  animation: fadeIn 0.4s ease-in-out;
}
#container-resultados .header-resultados {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 40px;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 15px;
}
#container-resultados .header-resultados .titulo-pagina {
  font-size: 32px;
  color: #2d4b6b;
  margin: 0;
}
#container-resultados .header-resultados .titulo-pagina span {
  font-weight: 700;
}
#container-resultados .header-resultados .btn-voltar {
  font-size: 14px;
  color: #999;
  text-decoration: none;
  cursor: pointer;
}
#container-resultados .header-resultados .btn-voltar:hover {
  color: #2d4b6b;
}
#container-resultados .grid-cards {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
#container-resultados .card-ong {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 35px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}
#container-resultados .card-ong .ong-nome {
  color: #b8952d;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
  margin-top: 0;
}
#container-resultados .card-ong .ong-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #4a4a4a;
  margin-bottom: 25px;
}
#container-resultados .card-ong .ong-info {
  border-top: 1px solid #f0f0f0;
  padding-top: 20px;
}
#container-resultados .card-ong .ong-info h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #333;
}
#container-resultados .card-ong .ong-info p {
  margin: 6px 0;
  font-size: 14px;
  color: #555;
}
#container-resultados .card-ong .ong-info p strong {
  color: #333;
}
#container-resultados .card-ong .ong-info a {
  color: #2d4b6b;
  text-decoration: underline;
  font-weight: 600;
}
#container-resultados .card-ong .ong-info a:hover {
  color: #b8952d;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.ong-locator__container .header-resultados {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.ong-locator__container .header-resultados .titulo-pagina {
  font-size: 28px;
  color: #17363f;
  font-family: var(--second-font);
  margin: 0;
}
.ong-locator__container .header-resultados .titulo-pagina span {
  font-weight: 800;
}
.ong-locator__container .header-resultados .btn-voltar {
  font-size: 14px;
  color: #777777;
  text-decoration: none;
  transition: color 0.3s ease;
}
.ong-locator__container .header-resultados .btn-voltar:hover {
  color: #2d4b6b;
  text-decoration: underline;
}
.ong-locator__container .grid-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.ong-locator__container .card-ong {
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
  margin-bottom: 2rem;
}
.ong-locator__container .card-ong .ong-nome {
  color: #269be3;
  text-transform: uppercase;
  font-size: 16px;
  font-family: var(--second-font);
  margin-bottom: 15px;
  margin-top: 0;
  letter-spacing: 0.5px;
}
.ong-locator__container .card-ong .ong-desc {
  color: #51696f;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 25px;
  text-align: justify;
}
.ong-locator__container .card-ong .ong-info {
  border-top: 1px solid rgba(119, 119, 119, 0.2);
  padding-top: 20px;
}
.ong-locator__container .card-ong .ong-info h4 {
  color: #51696f;
  font-size: 14px;
  font-family: var(--second-font);
  margin-bottom: 8px;
  margin-top: 0;
}
.ong-locator__container .card-ong .ong-info p {
  margin: 0 0;
  font-size: 14px;
}
.ong-locator__container .card-ong .ong-info p strong {
  color: #a8b4b7;
  font-family: var(--medium-font);
  margin-right: 4px;
}
.ong-locator__container .card-ong .ong-info a {
  color: var(--primary-color);
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.2s ease;
}
.ong-locator__container .card-ong .ong-info a:hover {
  color: #b8952d;
}

@media (max-width: 768px) {
  .ong-locator__container .header-resultados {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .ong-locator__container .card-ong {
    padding: 25px;
  }
}
@keyframes slideUpFade {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.ong-locator #wrapper-mapa-inicial[style*="display: block"], .ong-locator #wrapper-mapa-inicial[style*="display: flex"],
.ong-locator #wrapper-resultados[style*="display: block"],
.ong-locator #wrapper-resultados[style*="display: flex"] {
  animation: slideUpFade 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.ong-locator .card-ong {
  animation: slideUpFade 0.5s ease forwards;
  opacity: 0;
}
.ong-locator .card-ong:nth-child(1) {
  animation-delay: 0.1s;
}
.ong-locator .card-ong:nth-child(2) {
  animation-delay: 0.2s;
}
.ong-locator .card-ong:nth-child(3) {
  animation-delay: 0.3s;
}
.ong-locator .card-ong:nth-child(4) {
  animation-delay: 0.4s;
}
.ong-locator .card-ong:nth-child(5) {
  animation-delay: 0.5s;
}

.faq-section {
  padding: 60px 0;
}
.faq-section__title {
  font-size: 28px;
  color: #17363f;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
}

.faq-accordion {
  border-top: 1px solid #eeeeee;
}

.faq-item {
  border-bottom: 1px solid #eeeeee;
}
.faq-item__header {
  list-style: none;
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  font-family: var(--second-font);
  color: #17363f;
  outline: none;
  transition: color 0.3s ease;
}
.faq-item__header::-webkit-details-marker {
  display: none;
}
.faq-item__header:hover {
  color: #2d4b6b;
}
.faq-item__icon {
  width: 10px;
  height: 10px;
  border-right: 2px solid #cccccc;
  border-bottom: 2px solid #cccccc;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  margin-right: 10px;
  margin-top: -4px;
}
.faq-item[open] .faq-item__icon {
  transform: rotate(-135deg);
  margin-top: 4px;
}
.faq-item__content {
  padding-bottom: 25px;
  font-size: 16px;
  line-height: 1.6;
  color: #666666;
  animation: slideDown 0.3s ease-out;
}
.faq-item__content ul {
  padding-left: 2rem;
}
.faq-item__content li {
  list-style: disc;
  margin-bottom: 10px;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.final_contratacao {
  margin-block: 3rem;
}
.final_contratacao .btn {
  margin-top: 2rem;
}
.final_contratacao p {
  display: grid;
  grid-template-columns: auto 124px;
  align-items: center;
}

.page-template-contratacao .support-network {
  margin-top: 0;
}
.page-template-contratacao .support-network .support-network__grid {
  margin-top: 4rem;
}

.hub-single-page {
  background-color: #fafafa;
}
.hub-single-page .btn-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #9aa5b1;
  text-decoration: none;
  font-size: 0.95rem;
  margin-bottom: 40px;
  transition: color 0.3s;
}
.hub-single-page .btn-back:hover {
  color: #1a2b3c;
}
.hub-single-page .hub-header-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 60px;
}
.hub-single-page .hub-header-logos .logo-forum {
  height: 70px;
  width: auto;
}
.hub-single-page .hub-header-logos .logo-hub {
  height: 90px;
  width: auto;
}
.hub-single-page .hub-title {
  color: #17363f;
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 20px 0;
}
.hub-single-page .hub-subtitle {
  color: #51696f;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 40px 0;
  line-height: 1.5;
}
.hub-single-page .hub-alert-box {
  padding: 0 30px;
  margin-bottom: 30px;
  position: relative;
}
.hub-single-page .hub-alert-box:after {
  content: "";
  width: 4px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #f5b400;
  border-radius: 10px;
}
.hub-single-page .hub-alert-box h3 {
  color: #51696f;
  font-size: 18px;
  font-family: var(--second-font);
  margin: 0 0 10px 0;
}
.hub-single-page .hub-alert-box p {
  color: #51696f;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 100;
  margin: 0;
}
.hub-single-page .hub-link-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #269be3;
  font-family: var(--second-font);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 60px;
  margin-top: 20px;
  transition: color 0.3s;
  margin-left: 32px;
}
.hub-single-page .hub-link-action:hover {
  color: #2c5d8f;
}
.hub-single-page .hub-leader-organization .label {
  display: block;
  color: #a8b4b7;
  font-size: 14px;
  margin-bottom: 10px;
}
.hub-single-page .hub-leader-organization .leader-content {
  display: flex;
  align-items: center;
  gap: 25px;
}
.hub-single-page .hub-leader-organization .leader-content .leader-logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  flex-shrink: 0;
}
.hub-single-page .hub-leader-organization .leader-content .leader-logo-box img {
  max-width: 100%;
  max-height: 100%;
}
.hub-single-page .hub-leader-organization .leader-content .leader-text p {
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
}
.hub-single-page .hub-leader-organization .leader-content .leader-text p a {
  text-decoration: underline;
  color: var(--primary-color);
}
.hub-single-page .hub-leader-organization .leader-content .leader-text p u {
  text-decoration-color: #a0aec0;
  text-underline-offset: 3px;
}
@media (max-width: 768px) {
  .hub-single-page .hub-header-logos {
    flex-direction: column;
    gap: 20px;
  }
  .hub-single-page .hub-header-logos .divider {
    width: 60px;
    height: 1px;
  }
  .hub-single-page .hub-title {
    font-size: 1.8rem;
  }
  .hub-single-page .hub-subtitle {
    font-size: 1.1rem;
  }
  .hub-single-page .hub-leader-organization .leader-content {
    flex-direction: column;
    align-items: flex-start;
  }
}

.hub-accordion {
  background-color: #f1f3f3;
  border-radius: 12px;
  overflow: hidden;
  font-family: sans-serif;
  margin-top: 40px;
  border: 1px solid #e3e6e7;
}
.hub-accordion .hub-accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  background: transparent;
  border: none;
  color: #17363f;
  font-size: 16px;
  font-family: var(--second-font);
  cursor: pointer;
}
.hub-accordion .hub-accordion-header .icon {
  color: #9aa5b1;
  transition: transform 0.3s ease;
}
.hub-accordion .hub-accordion-header.active .icon {
  transform: rotate(180deg);
}
.hub-accordion .hub-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.hub-accordion .hub-accordion-content .hub-members-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 30px;
  padding: 0 30px 30px 50px;
  margin: 0;
  list-style: none;
}
.hub-accordion .hub-accordion-content .hub-members-list li {
  color: #4a5568;
  font-size: 0.95rem;
  line-height: 1.4;
}
@media (max-width: 992px) {
  .hub-accordion .hub-accordion-content .hub-members-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .hub-accordion .hub-accordion-content .hub-members-list {
    grid-template-columns: 1fr;
  }
  .hub-accordion .hub-accordion-header {
    padding: 20px;
  }
  .hub-accordion .hub-accordion-content .hub-members-list {
    padding: 0 20px 20px 20px;
  }
}

.hub-bottom-sections {
  padding: 0 0 20px;
}
.hub-bottom-sections .section-title {
  color: #17363f;
  font-size: 28px;
  font-family: var(--second-font);
  margin: 0 0 30px 0;
}
.hub-bottom-sections .contact-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.hub-bottom-sections .contact-row .contact-email {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 16px;
  color: #51696f;
}
.hub-bottom-sections .contact-row .contact-email .icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #e5f0fc;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hub-bottom-sections .contact-row .contact-email a {
  color: #269be3;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.hub-bottom-sections .contact-row .contact-email a:hover {
  color: #2c5d8f;
}
.hub-bottom-sections .section-divider {
  height: 1px;
  background-color: #cbd5e1;
  margin: 50px 0;
}
.hub-bottom-sections .employability-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.hub-bottom-sections .employability-row .hub-alert-content {
  flex: 1;
  border-left: 4px solid #f2bc41;
  padding: 5px 0 5px 20px;
}
.hub-bottom-sections .employability-row .hub-alert-content h3 {
  color: #4a5568;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 12px 0;
}
.hub-bottom-sections .employability-row .hub-alert-content p {
  color: #94a3b8;
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
  max-width: 800px;
}
.hub-bottom-sections .employability-row .employability-illustration {
  flex-shrink: 0;
  width: 200px;
}
.hub-bottom-sections .employability-row .employability-illustration img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .hub-bottom-sections .contact-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .hub-bottom-sections .employability-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .hub-bottom-sections .employability-row .employability-illustration {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
  }
}
.hub-bottom-sections .hub-alert-box {
  padding: 0 30px;
  margin-bottom: 30px;
  position: relative;
}
.hub-bottom-sections .hub-alert-box:after {
  content: "";
  width: 4px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #f5b400;
  border-radius: 10px;
}
.hub-bottom-sections .hub-alert-box h3 {
  color: #51696f;
  font-size: 18px;
  margin: 0 0 10px 0;
  font-family: var(--second-font);
}
.hub-bottom-sections .hub-alert-box p {
  color: #51696f;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 100;
  margin: 0;
}

.redes-empregabilidade-section {
  padding: 80px 20px 0;
  background-color: #fafbfc;
  font-family: sans-serif;
}
.redes-empregabilidade-section .container {
  display: grid;
  align-items: center;
  grid-template-columns: 740px auto;
  gap: 60px;
}
.redes-empregabilidade-section .content-text {
  flex: 1;
  width: 740px;
}
.redes-empregabilidade-section .content-text h2 {
  margin: 0 0 30px 0;
}
.redes-empregabilidade-section .content-text .highlight-box {
  padding-left: 20px;
  margin-bottom: 30px;
  position: relative;
}
.redes-empregabilidade-section .content-text .highlight-box:after {
  content: "";
  width: 4px;
  height: 100%;
  background-color: #f5b400;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 4px;
}
.redes-empregabilidade-section .content-text .highlight-box p {
  color: #51696f;
  font-size: 18px;
  font-family: var(--second-font);
  line-height: 1.5;
  margin: 0;
}
.redes-empregabilidade-section .content-text .description p {
  line-height: 1.6;
  margin: 0 0 20px 0;
}
.redes-empregabilidade-section .content-text .description p:last-child {
  margin-bottom: 30px;
}
.redes-empregabilidade-section .content-text .states-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.redes-empregabilidade-section .content-text .states-pills .pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #f1f3f3;
  border: 1px solid #e3e6e7;
  color: #51696f;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.redes-empregabilidade-section .content-text .states-pills .pill:hover {
  background-color: #e2e8f0;
  transform: translateY(-2px);
}
.redes-empregabilidade-section .content-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
.redes-empregabilidade-section .content-image img {
  max-width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 992px) {
  .redes-empregabilidade-section .container {
    flex-direction: column;
  }
  .redes-empregabilidade-section .content-image {
    justify-content: center;
    width: 100%;
    max-width: 500px;
    margin-top: 40px;
  }
}

/* Estilos do Modal Overlay */
.hub-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none; /* Escondido por padrão */
  align-items: center;
  justify-content: center;
  z-index: 9999;
  font-family: sans-serif;
  padding: 20px;
}
.hub-modal-overlay.active {
  display: flex;
}

/* Conteúdo do Modal */
.hub-modal-content {
  background-color: #f1f3f3;
  width: 100%;
  max-width: 1340px;
  max-height: 90vh;
  border-radius: 10px;
  position: relative;
  padding: 40px;
  overflow-y: auto;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.hub-modal-content .hub-modal-close {
  position: absolute;
  top: 25px;
  right: 25px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  transition: transform 0.2s;
}
.hub-modal-content .hub-modal-close:hover {
  transform: scale(1.1);
}
.hub-modal-content .modal-header {
  margin-bottom: 30px;
}
.hub-modal-content .modal-header h2 {
  font-size: 22px;
  margin: 0 0 15px 0;
}
.hub-modal-content .modal-header h2 .highlight-green {
  color: #8ac926;
}
.hub-modal-content .modal-header p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}
.hub-modal-content .modal-accordion {
  border-top: 1px solid #e2e8f0;
  padding-top: 15px;
}
.hub-modal-content .modal-accordion .accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  color: #17363f;
  font-size: 1rem;
  font-family: var(--second-font);
  cursor: pointer;
  padding: 15px 15px;
}
.hub-modal-content .modal-accordion .accordion-trigger .icon-arrow {
  color: #9aa5b1;
  transition: transform 0.3s ease;
}
.hub-modal-content .modal-accordion .accordion-trigger.active .icon-arrow {
  transform: rotate(180deg);
}
.hub-modal-content .modal-accordion .accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.hub-modal-content .modal-accordion .accordion-body .organizations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
}
.hub-modal-content {
  /* Estilos do Card de Organização */
}
.hub-modal-content .org-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.hub-modal-content .org-card .org-card-header {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 0;
}
.hub-modal-content .org-card .org-card-header .org-logo {
  flex: 1;
}
.hub-modal-content .org-card .org-card-header .org-logo img {
  max-width: 100%;
  height: auto;
  max-height: 75px;
  -o-object-fit: contain;
     object-fit: contain;
}
.hub-modal-content .org-card .org-card-header .org-links {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 0.8rem;
}
.hub-modal-content .org-card .org-card-header .org-links a,
.hub-modal-content .org-card .org-card-header .org-links span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #64748b;
  text-decoration: none;
}
.hub-modal-content .org-card .org-card-header .org-links a {
  color: #4a90e2;
}
.hub-modal-content .org-card .org-card-header .org-links a:hover {
  text-decoration: underline;
}
.hub-modal-content .org-card p {
  font-size: 12px;
  color: #51696f;
  line-height: 1.4;
  margin: 0;
}
.hub-modal-content {
  /* Responsividade do Grid */
}
@media (max-width: 1024px) {
  .hub-modal-content .modal-accordion .accordion-body .organizations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .hub-modal-content .modal-accordion .accordion-body .organizations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hub-modal-content .hub-modal-content {
    padding: 25px;
  }
}
@media (max-width: 480px) {
  .hub-modal-content .modal-accordion .accordion-body .organizations-grid {
    grid-template-columns: 1fr;
  }
  .hub-modal-content .org-card .org-card-header {
    flex-direction: column;
  }
}

.employability-network {
  padding: 24px;
}
.employability-network .divider {
  margin-block: 50px;
}
.employability-network__container {
  background: #edf7fd;
  border: 1px solid #dbeefa;
  border-radius: 16px;
  padding: 33px;
}
.employability-network__header {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.employability-network__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  margin-top: 50px;
  align-items: start;
}
.employability-network__item {
  text-align: center;
}
.employability-network__item p {
  margin: 14px 0 0;
  font-size: 16px;
  font-family: var(--second-font);
  color: #17363f;
}
.employability-network__icon {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.employability-network__icon img {
  width: 44px;
  height: 44px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.employability-network__footer {
  max-width: 680px;
  width: 100%;
  margin: 50px auto 0;
  text-align: center;
}

@media (max-width: 1200px) {
  .employability-network__container {
    padding: 56px 40px;
  }
  .employability-network__header h2 {
    font-size: 44px;
  }
  .employability-network__header p {
    font-size: 20px;
  }
  .employability-network__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 32px;
    margin-top: 64px;
  }
  .employability-network__item p {
    font-size: 21px;
  }
  .employability-network__footer {
    margin-top: 64px;
  }
  .employability-network__footer p {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .employability-network {
    padding: 16px;
  }
  .employability-network__container {
    padding: 40px 24px;
    border-radius: 20px;
  }
  .employability-network__header h2 {
    font-size: 32px;
  }
  .employability-network__header p {
    font-size: 18px;
  }
  .employability-network__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 48px;
  }
  .employability-network__item p {
    font-size: 20px;
  }
  .employability-network__icon {
    width: 64px;
    height: 64px;
  }
  .employability-network__icon img {
    width: 28px;
    height: 28px;
  }
  .employability-network__footer {
    margin-top: 48px;
  }
  .employability-network__footer p {
    font-size: 18px;
  }
}
.boas-praticas .divider {
  margin-block: 50px;
}
.boas-praticas__header {
  text-align: center;
  margin: 0 auto 64px;
}
.boas-praticas__header h2 {
  margin: 0 0 20px;
}
.boas-praticas__header p {
  margin: 0;
}
.boas-praticas__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.boas-praticas__card {
  cursor: pointer;
}
.boas-praticas__thumb {
  height: 320px;
  border-radius: 14px;
  overflow: hidden;
  background: #eef2f1;
  margin-bottom: 24px;
}
.boas-praticas__thumb img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.boas-praticas__thumb-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #ececec 25%, transparent 25%), linear-gradient(-45deg, #ececec 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #ececec 75%), linear-gradient(-45deg, transparent 75%, #ececec 75%);
  background-size: 28px 28px;
  background-position: 0 0, 0 14px, 14px -14px, -14px 0;
  background-color: #f6f6f6;
}
.boas-praticas__content h3 {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
  color: #173847;
}
.boas-praticas__content p {
  margin: 0;
  font-size: 20px;
  line-height: 1.5;
  color: #58707a;
}

.boas-praticas-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.25s ease;
}
.boas-praticas-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.boas-praticas-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 27, 34, 0.45);
}
.boas-praticas-modal__dialog {
  position: relative;
  width: 586px;
  margin: 20px auto;
  background: #f5f7f6;
  border-radius: 24px;
  overflow: hidden;
}
.boas-praticas-modal__scroll {
  overflow-y: auto;
  max-height: calc(100vh - 40px);
  padding: 30px;
}
.boas-praticas-modal__close {
  position: absolute;
  top: 22px;
  right: 26px;
  border: 0;
  background: transparent;
  font-size: 52px;
  line-height: 1;
  color: #a7b2b5;
  cursor: pointer;
  z-index: 2;
}
.boas-praticas-modal .boas-praticas-modal__body p:last-child {
  margin-bottom: 0;
}
.boas-praticas-modal__meta {
  margin-bottom: 1rem;
  font-size: 12px;
  line-height: 1.4;
  color: #a8b4b7;
}
.boas-praticas-modal__title-wrap {
  position: relative;
  gap: 18px;
  margin-bottom: 28px;
  padding-left: 1rem;
}
.boas-praticas-modal__title-wrap:after {
  content: "";
  position: absolute;
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
  background: #f1b300;
  border-radius: 4px;
}
.boas-praticas-modal__title {
  margin: 0;
  font-size: 18px;
  line-height: 1.18;
  font-family: var(--second-font);
  color: #173847;
  max-width: 900px;
}
.boas-praticas-modal__excerpt {
  margin-bottom: 32px;
}
.boas-praticas-modal__excerpt p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}
.boas-praticas-modal__media {
  margin-bottom: 14px;
}
.boas-praticas-modal__media img {
  width: 100%;
  display: block;
  border-radius: 24px;
  -o-object-fit: cover;
     object-fit: cover;
}
.boas-praticas-modal__caption {
  margin-bottom: 34px;
  font-size: 16px;
  line-height: 1.5;
  color: #b0b7b9;
}
.boas-praticas-modal .wp-block-image :where(figcaption) {
  font-size: 12px;
  color: #a8b4b7;
}
.boas-praticas-modal__body {
  line-height: 1.55;
}
.boas-praticas-modal__body p {
  margin: 0 0 24px;
}
.boas-praticas-modal__body h2,
.boas-praticas-modal__body h3,
.boas-praticas-modal__body h4 {
  margin: 32px 0 16px;
  color: #173847;
}
.boas-praticas-modal__body img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 1200px) {
  .boas-praticas__header h2 {
    font-size: 42px;
  }
  .boas-praticas__header p {
    font-size: 21px;
  }
  .boas-praticas__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .boas-praticas__thumb {
    height: 280px;
  }
  .boas-praticas-modal__scroll {
    padding: 42px 24px 48px;
  }
  .boas-praticas-modal__title {
    font-size: 30px;
  }
  .boas-praticas-modal__excerpt p, .boas-praticas-modal__body p {
    font-size: 20px;
  }
  .boas-praticas-modal__accent {
    height: 120px;
  }
}
@media (max-width: 767px) {
  .boas-praticas {
    padding: 48px 0;
  }
  .boas-praticas__container {
    padding: 0 20px;
  }
  .boas-praticas__header {
    margin-bottom: 40px;
  }
  .boas-praticas__header h2 {
    font-size: 30px;
  }
  .boas-praticas__header p {
    font-size: 18px;
  }
  .boas-praticas__thumb {
    height: 220px;
    margin-bottom: 18px;
  }
  .boas-praticas__content h3 {
    font-size: 24px;
  }
  .boas-praticas__content p {
    font-size: 17px;
  }
  .boas-praticas-modal__dialog {
    width: calc(100vw - 16px);
    max-height: calc(100vh - 16px);
    margin: 8px auto;
    border-radius: 18px;
  }
  .boas-praticas-modal__scroll {
    max-height: calc(100vh - 16px);
    padding: 54px 18px 32px;
  }
  .boas-praticas-modal__close {
    top: 14px;
    right: 16px;
    font-size: 42px;
  }
  .boas-praticas-modal__meta {
    font-size: 15px;
  }
  .boas-praticas-modal__title-wrap {
    gap: 12px;
    margin-bottom: 20px;
  }
  .boas-praticas-modal__accent {
    width: 6px;
    min-width: 6px;
    height: 92px;
  }
  .boas-praticas-modal__title {
    font-size: 24px;
  }
  .boas-praticas-modal__excerpt p {
    font-size: 18px;
  }
  .boas-praticas-modal__body {
    font-size: 18px;
  }
  .boas-praticas-modal__body p {
    font-size: 18px;
  }
  .boas-praticas-modal__media img {
    border-radius: 16px;
  }
  .boas-praticas-modal__caption {
    font-size: 14px;
  }
}
.boas-praticas__card {
  cursor: pointer;
  border-radius: 18px;
  padding: 20px;
  transition: all 0.35s ease;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}
.boas-praticas__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
}
.boas-praticas__card:hover .boas-praticas__thumb img {
  transform: scale(1.05);
}
.boas-praticas__card:hover .boas-praticas__title::after {
  width: 100%;
}
.boas-praticas__thumb {
  height: 260px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 20px;
  background: #f3f3f3;
}
.boas-praticas__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}
.boas-praticas__content h3 {
  position: relative;
  margin: 0 0 12px;
  font-size: 16px;
  font-family: var(--second-font);
  color: #17363f;
  display: inline-block;
}
.boas-praticas__content h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  height: 4px;
  width: 0;
  background: #f1b300;
  border-radius: 4px;
  transition: width 0.4s ease;
}
.boas-praticas__content p {
  margin: 16px 0 0;
  font-size: 14px;
}

.contact-highlight {
  padding: 24px 0;
}
.contact-highlight__title {
  margin: 0 0 36px;
}
.contact-highlight__row {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact-highlight__text a {
  color: #269be3;
  text-decoration: underline;
  transition: opacity 0.25s ease;
}
.contact-highlight__text a:hover {
  opacity: 0.8;
}

@media (max-width: 1200px) {
  .contact-highlight__title {
    font-size: 52px;
    margin-bottom: 28px;
  }
  .contact-highlight__text {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .contact-highlight {
    padding: 20px 0;
  }
  .contact-highlight__title {
    font-size: 36px;
    margin-bottom: 24px;
  }
  .contact-highlight__row {
    align-items: flex-start;
    gap: 18px;
  }
  .contact-highlight__icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
  }
  .contact-highlight__icon img {
    width: 26px;
    height: 26px;
  }
  .contact-highlight__text {
    font-size: 18px;
    line-height: 1.5;
  }
}
.hubs-section {
  padding: 72px 0;
  background: #f5f6f5;
}
.hubs-section__header {
  max-width: 1040px;
  margin: 0 auto 40px;
  text-align: center;
}
.hubs-section__header p {
  margin: 0;
}
.hubs-section__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.hubs-card {
  min-height: 312px;
  padding: 30px;
  background: #f1f3f3;
  border: 1px solid #e3e6e7;
  border-radius: 20px;
  text-align: center;
}
.hubs-card__icon {
  margin-bottom: 16px;
}
.hubs-card .hubs-card__note {
  font-size: 12px !important;
  color: #a8b4b7 !important;
}
.hubs-card h3 {
  margin: 0 0 16px;
  font-size: 18px;
  line-height: 1.2;
  font-family: var(--second-font);
  color: #17363f;
}
.hubs-card p,
.hubs-card li {
  font-size: 14px;
  line-height: 1.45;
  color: #51696f;
}
.hubs-card li {
  list-style: disc;
}
.hubs-card p {
  margin: 0;
}
.hubs-card p + p {
  margin-top: 22px;
}
.hubs-card ul {
  margin: 0;
  padding-left: 24px;
  text-align: left;
}
.hubs-card li + li {
  margin-top: 4px;
}
.hubs-card__note {
  margin-top: 26px !important;
  font-size: 15px !important;
  line-height: 1.45;
  color: #a2adb1 !important;
}

@media (max-width: 1200px) {
  .hubs-section__header h2 {
    font-size: 42px;
  }
  .hubs-section__header p {
    font-size: 20px;
  }
  .hubs-section__grid {
    gap: 20px;
  }
  .hubs-card {
    padding: 32px 28px;
    min-height: auto;
  }
  .hubs-card h3 {
    font-size: 24px;
  }
  .hubs-card p,
  .hubs-card li {
    font-size: 17px;
  }
}
@media (max-width: 767px) {
  .hubs-section {
    padding: 48px 0;
  }
  .hubs-section__container {
    padding: 0 16px;
  }
  .hubs-section__header {
    margin-bottom: 28px;
  }
  .hubs-section__header h2 {
    font-size: 32px;
  }
  .hubs-section__header p {
    font-size: 17px;
  }
  .hubs-section__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .hubs-card {
    padding: 28px 20px;
    border-radius: 20px;
  }
  .hubs-card__icon {
    width: 50px;
    height: 50px;
    margin-bottom: 18px;
  }
  .hubs-card__icon img {
    width: 22px;
    height: 22px;
  }
  .hubs-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
  }
  .hubs-card p,
  .hubs-card li {
    font-size: 16px;
  }
  .hubs-card ul {
    padding-left: 20px;
  }
  .hubs-card__note {
    font-size: 14px !important;
  }
}
#sobre .wp-block-embed__wrapper {
  text-align: center;
  margin-block: 50px;
}
#sobre .wp-block-embed iframe {
  width: 784px;
  height: 373px;
}

.forum-hubs {
  padding: 0 0 5rem;
  background: #f5f6f5;
}
.forum-hubs .divider {
  margin-block: 50px;
}
.forum-hubs__content {
  display: grid;
  grid-template-columns: 440px 1fr;
  align-items: start;
  gap: 80px;
}
.forum-hubs__left {
  padding-top: 8px;
}
.forum-hubs__states {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 28px;
}
.forum-hubs__state {
  width: -moz-max-content;
  width: max-content;
  padding: 9px 14px;
  border: 1px solid #d6dcda;
  border-radius: 999px;
  background: #f3f4f3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.forum-hubs__state span:last-child {
  font-size: 14px;
  line-height: 1.2;
  font-family: var(--second-font);
  color: #51696f;
}
.forum-hubs__state:hover {
  transform: translateY(-2px);
  border-color: #c5cfcb;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  background: #ffffff;
}
.forum-hubs__state-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.forum-hubs__state-icon img {
  width: 18px;
  height: 18px;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
.forum-hubs__right {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.forum-hubs__map {
  width: 100%;
  max-width: 458px;
}
.forum-hubs__map img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (max-width: 1200px) {
  .forum-hubs__content {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
  .forum-hubs__left h2 {
    font-size: 48px;
    margin-bottom: 28px;
  }
  .forum-hubs__left p {
    font-size: 20px;
    margin-bottom: 28px;
  }
  .forum-hubs__states {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .forum-hubs {
    padding: 48px 0 60px;
  }
  .forum-hubs__container {
    padding: 0 20px;
  }
  .forum-hubs__content {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .forum-hubs__left h2 {
    font-size: 38px;
    margin-bottom: 24px;
  }
  .forum-hubs__left p {
    font-size: 18px;
    margin-bottom: 24px;
  }
  .forum-hubs__states {
    gap: 16px;
  }
  .forum-hubs__state {
    padding: 12px 18px;
  }
  .forum-hubs__state span:last-child {
    font-size: 16px;
  }
  .forum-hubs__map {
    max-width: 100%;
  }
}
.about-forum {
  padding: 32px 0 56px;
}
.about-forum__top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 1rem;
}
.about-forum__brand img {
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1440px) {
  .about-forum__title {
    font-size: 58px;
    margin-bottom: 40px;
  }
  .about-forum__top {
    grid-template-columns: 300px 1fr;
    gap: 48px;
  }
  .about-forum__highlight {
    font-size: 24px;
  }
}
@media (max-width: 991px) {
  .about-forum__top {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
  }
  .about-forum__brand {
    max-width: 280px;
  }
}
@media (max-width: 767px) {
  .about-forum {
    padding: 24px 0 40px;
  }
  .about-forum__container {
    padding: 0 20px;
  }
  .about-forum__title {
    font-size: 40px;
    margin-bottom: 28px;
  }
  .about-forum__top {
    gap: 20px;
    margin-bottom: 24px;
  }
  .about-forum__brand {
    max-width: 220px;
  }
  .about-forum__intro p, .about-forum__content p {
    font-size: 18px;
    line-height: 1.55;
  }
  .about-forum__content p + p {
    margin-top: 22px;
  }
  .about-forum__highlight {
    font-size: 20px;
  }
}
.membership-section {
  padding: 28px 0 44px;
}
.membership-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 42px;
}
.membership-section__cta {
  min-width: 290px;
  padding: 18px 30px;
  border-radius: 999px;
  background: #3196dc;
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
  transition: all 0.3s ease;
}
.membership-section__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(49, 150, 220, 0.22);
}
.membership-section__cta svg {
  flex-shrink: 0;
}
.membership-section__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.membership-card {
  min-height: 400px;
  padding: 30px;
  border: 1px solid #e3e6e7;
  border-radius: 20px;
  background: #f1f3f3;
  display: flex;
  flex-direction: column;
}
.membership-card__title {
  margin: 0 0 0;
  font-size: 22px;
  line-height: 1.15;
  font-family: var(--second-font);
}
.membership-card__content {
  flex: 1;
}
.membership-card__link {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.2;
  font-family: var(--second-font);
  transition: all 0.4s ease;
  width: -moz-max-content;
  width: max-content;
  padding: 10px 32px;
  border-radius: 100px;
  border: 0;
  background-color: transparent;
}
.membership-card__link:hover {
  cursor: pointer;
}
.membership-card__link svg {
  flex-shrink: 0;
}
.membership-card--red .membership-card__title {
  color: #cc000e;
}
.membership-card--red .membership-card__link {
  color: #cc000e;
}
.membership-card--red .membership-card__link:hover {
  background-color: #850009;
  color: white;
}
.membership-card--red .membership-card__link:hover svg path {
  stroke: white;
}
.membership-card--blue .membership-card__title {
  color: #269be3;
}
.membership-card--blue .membership-card__link {
  color: #269be3;
}
.membership-card--blue .membership-card__link svg path {
  stroke: #269be3;
}
.membership-card--blue .membership-card__link:hover {
  background-color: #269be3;
  color: white;
}
.membership-card--blue .membership-card__link:hover svg path {
  stroke: white;
}
.membership-card--yellow .membership-card__title {
  color: #f5b400;
}
.membership-card--yellow .membership-card__link {
  color: #f5b400;
}
.membership-card--yellow .membership-card__link svg path {
  stroke: #f5b400;
}
.membership-card--yellow .membership-card__link:hover {
  background-color: #cc9600;
  color: white;
}
.membership-card--yellow .membership-card__link:hover svg path {
  stroke: white;
}

@media (max-width: 1400px) {
  .membership-section__title {
    font-size: 48px;
  }
  .membership-section__grid {
    gap: 20px;
  }
  .membership-card {
    min-height: 520px;
    padding: 34px 30px 40px;
  }
  .membership-card__title {
    font-size: 28px;
    margin-bottom: 22px;
  }
  .membership-card__content p {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .membership-section .container {
    padding: 0 20px;
  }
  .membership-section__head {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 28px;
  }
  .membership-section__title {
    font-size: 38px;
  }
  .membership-section__cta {
    min-width: 0;
    width: 100%;
  }
  .membership-section__grid {
    grid-template-columns: 1fr;
  }
  .membership-card {
    min-height: auto;
  }
}
@media (max-width: 767px) {
  .membership-card {
    padding: 28px 22px 30px;
    border-radius: 16px;
  }
  .membership-card__title {
    font-size: 24px;
    margin-bottom: 18px;
  }
  .membership-card__content p {
    font-size: 18px;
    line-height: 1.55;
  }
  .membership-card__link {
    margin-top: 28px;
    font-size: 16px;
    gap: 12px;
  }
}
.membership-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.membership-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.membership-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(23, 56, 71, 0.18);
  backdrop-filter: blur(2px);
}
.membership-modal__dialog {
  position: relative;
  width: calc(100vw - 60px);
  max-width: 1000px;
  max-height: calc(100vh - 40px);
  margin: 20px auto;
  background: #f8f9f9;
  border-radius: 10px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
  overflow: hidden;
}
.membership-modal__scroll {
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 30px;
}
.membership-modal__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: #a5b0b5;
  cursor: pointer;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}
.membership-modal__close:hover {
  opacity: 0.75;
}
.membership-modal__title {
  margin: 0 0 20px;
  font-size: 24px;
  line-height: 1.15;
  font-family: var(--second-font);
}
.membership-modal__title--red {
  color: #cc000e;
}
.membership-modal__title--blue {
  color: #269be3;
}
.membership-modal__title--yellow {
  color: #f5b400;
}

.membership-company-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  padding: 16px;
  border: 1px solid #d7dddb;
  border-radius: 18px;
  background: #f5f6f5;
}
.membership-company-card + .membership-company-card {
  margin-top: 18px;
}
.membership-company-card__brand {
  display: flex;
  align-items: center;
  justify-content: center;
}
.membership-company-card__brand img {
  max-width: 220px;
  max-height: 110px;
  width: auto;
  height: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
.membership-company-card__content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
}
.membership-company-card__button {
  margin-top: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #f1f3f3;
  color: #51696f;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  line-height: 1.2;
  transition: all 0.25s ease;
}
.membership-company-card__button:hover {
  background: #e7ece9;
  transform: translateX(2px);
}

.membership-list-columns ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  -moz-column-gap: 6rem;
       column-gap: 6rem;
}
.membership-list-columns ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.membership-list-columns li {
  font-size: 14px;
  margin-bottom: 1rem;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 1200px) {
  .membership-modal__dialog {
    width: calc(100vw - 30px);
  }
  .membership-modal__scroll {
    padding: 28px 24px 30px;
  }
  .membership-modal__title {
    font-size: 28px;
    margin-bottom: 24px;
  }
  .membership-company-card {
    grid-template-columns: 200px 1fr;
    gap: 24px;
  }
  .membership-company-card__content p {
    font-size: 19px;
  }
  .membership-list-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .membership-list-columns--two {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .membership-list-columns li {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .membership-modal__dialog, .membership-modal__dialog--list {
    width: calc(100vw - 16px);
    max-height: calc(100vh - 16px);
    margin: 8px auto;
    border-radius: 18px;
  }
  .membership-modal__scroll {
    max-height: calc(100vh - 16px);
    padding: 22px 16px 24px;
  }
  .membership-modal__close {
    top: 16px;
    right: 12px;
    width: 36px;
    height: 36px;
  }
  .membership-modal__title {
    padding-right: 36px;
    font-size: 24px;
    margin-bottom: 18px;
  }
  .membership-company-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px 16px;
  }
  .membership-company-card__brand {
    justify-content: flex-start;
  }
  .membership-company-card__brand img {
    max-width: 170px;
  }
  .membership-company-card__content p {
    font-size: 17px;
  }
  .membership-company-card__button {
    font-size: 15px;
    gap: 10px;
  }
  .membership-list-columns {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .membership-list-columns li {
    font-size: 17px;
  }
  .membership-list-columns li + li {
    margin-top: 14px;
  }
}
#video {
  padding-block-start: 3rem;
  margin-block: 50px;
}
@media (max-width: 990px) {
  #video {
    padding-block-start: 0;
  }
}

.forum-hubs-logos {
  padding: 20px 0 50px;
}
.forum-hubs-logos h2 {
  font-size: 28px;
  text-align: center;
}
.forum-hubs-logos__top-mark {
  width: 24px;
  height: 3px;
  border-radius: 999px;
  background: #ff4fc3;
  margin: 0 auto 26px;
}
.forum-hubs-logos__grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
  padding-inline: 143px;
}
.forum-hubs-logos__item {
  display: flex;
  align-items: center;
  justify-content: center;
}
.forum-hubs-logos__item a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.forum-hubs-logos__item a:hover {
  transform: translateY(-4px);
  opacity: 0.92;
}
.forum-hubs-logos__item img {
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 156px;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
.forum-hubs-logos__divider, .forum-hubs-logos__bottom-divider {
  width: 100%;
  height: 1px;
  background: #d6dcda;
}
.forum-hubs-logos__divider {
  margin: 62px 0 60px;
}
.forum-hubs-logos__content h3 {
  margin: 0 0 28px;
  font-size: 28px;
  line-height: 1.12;
  font-family: var(--second-font);
  color: #17363f;
}
.forum-hubs-logos__toggle {
  width: 100%;
  margin-top: 20px;
  padding: 30px 16px;
  border: 0;
  border-bottom: 1px solid #dee2e6;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 16px;
  line-height: 1.2;
  font-family: var(--second-font);
  color: #51696f;
  cursor: pointer;
  text-align: left;
  transition: background 0.25s ease, color 0.25s ease;
}
.forum-hubs-logos__toggle svg {
  flex-shrink: 0;
  color: #9aa7ab;
  transition: transform 0.3s ease, color 0.25s ease;
}
.forum-hubs-logos__toggle:hover {
  background: #f3f4f3;
}
.forum-hubs-logos__toggle:hover svg {
  color: #58707a;
}
.forum-hubs-logos__toggle.is-open {
  border-bottom: 0;
}
.forum-hubs-logos__toggle.is-open svg {
  transform: rotate(180deg);
  color: #9aa7ab;
}
.forum-hubs-logos__accordion {
  padding: 24px 0 0;
  border-bottom: 1px solid #d6dcda;
}
.forum-hubs-logos__members {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px 36px;
  padding: 0 30px 32px;
}
.forum-hubs-logos__bottom-divider {
  display: none;
}

.forum-hubs-member {
  min-height: 216px;
  padding: 22px 22px 26px;
  border: 1px solid #e3e6e7;
  border-radius: 20px;
  background: #f1f3f3;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.forum-hubs-member:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.06);
  border-color: #cdd5d2;
}
.forum-hubs-member__avatar {
  width: 96px;
  height: 96px;
  margin: 0 auto 18px;
  border-radius: 50%;
  overflow: hidden;
  background: #eef1ef;
  display: flex;
  align-items: center;
  justify-content: center;
}
.forum-hubs-member__avatar img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.forum-hubs-member__content h4 {
  margin: 0 0 12px;
  font-size: 16px;
  font-family: var(--second-font);
  color: #17363f;
}
.forum-hubs-member__content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.2;
}

@media (max-width: 1200px) {
  .forum-hubs-logos__title {
    font-size: 44px;
  }
  .forum-hubs-logos__grid {
    margin-top: 48px;
    gap: 32px;
    padding-inline: 40px;
  }
  .forum-hubs-logos__divider {
    margin: 46px 0 42px;
  }
  .forum-hubs-logos__content h3 {
    font-size: 40px;
    margin-bottom: 20px;
  }
  .forum-hubs-logos__content p {
    font-size: 18px;
  }
  .forum-hubs-logos__members {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-inline: 0;
  }
}
@media (max-width: 767px) {
  .forum-hubs-logos {
    padding: 22px 0 40px;
  }
  .forum-hubs-logos .container {
    padding: 0 20px;
  }
  .forum-hubs-logos__top-mark {
    margin-bottom: 18px;
  }
  .forum-hubs-logos__title {
    font-size: 34px;
  }
  .forum-hubs-logos__grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 32px;
    padding-inline: 0;
  }
  .forum-hubs-logos__item img {
    max-height: 120px;
  }
  .forum-hubs-logos__divider {
    margin: 36px 0 32px;
  }
  .forum-hubs-logos__content h3 {
    font-size: 30px;
    margin-bottom: 16px;
  }
  .forum-hubs-logos__content p {
    font-size: 17px;
    line-height: 1.6;
  }
  .forum-hubs-logos__toggle {
    margin-top: 28px;
    padding: 24px 0;
    font-size: 16px;
  }
  .forum-hubs-logos__accordion {
    padding-top: 18px;
  }
  .forum-hubs-logos__members {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-bottom: 24px;
  }
  .forum-hubs-member {
    min-height: auto;
    padding: 20px 18px 22px;
    border-radius: 18px;
  }
  .forum-hubs-member__avatar {
    width: 84px;
    height: 84px;
    margin-bottom: 16px;
  }
  .forum-hubs-member__content h4 {
    font-size: 20px;
  }
  .forum-hubs-member__content p {
    font-size: 16px;
  }
}
.members-commitments {
  padding: 28px 0 34px;
}
.members-commitments__content {
  max-width: 100%;
}
.members-commitments__content h2 {
  margin: 0 0 26px;
  font-size: 28px;
}
.members-commitments__button {
  margin-top: 28px;
  padding: 12px 26px;
  border: 0;
  border-radius: 999px;
  background: #269be3;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 14px;
  line-height: 1.2;
  font-family: var(--second-font);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}
.members-commitments__button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(49, 150, 220, 0.22);
}
.members-commitments__button svg {
  flex-shrink: 0;
}
.members-commitments__divider {
  margin-top: 58px;
  width: 100%;
  height: 1px;
  background: #d6dcda;
}

.members-commitments-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.members-commitments-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.members-commitments-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(23, 56, 71, 0.16);
  backdrop-filter: blur(2px);
}
.members-commitments-modal__dialog {
  position: relative;
  width: calc(100vw - 40px);
  max-width: 1000px;
  max-height: calc(100vh - 40px);
  margin: 20px auto;
  background: #f8f9f9;
  border-radius: 10px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
  overflow: hidden;
}
.members-commitments-modal__scroll {
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 30px;
}
.members-commitments-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: #a5b0b5;
  cursor: pointer;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}
.members-commitments-modal__close:hover {
  opacity: 0.75;
}
.members-commitments-modal__title {
  margin: 0 0 26px;
  padding-right: 48px;
  font-size: 24px;
  line-height: 1.15;
  font-family: var(--second-font);
  color: #17363f;
}
.members-commitments-modal__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.members-goal-card {
  padding: 16px;
  border: 1px solid #e3e6e7;
  border-radius: 10px;
  background: #f1f3f3;
}
.members-goal-card h4 {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.25;
  font-family: var(--second-font);
  color: #269be3;
}
.members-goal-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

body.members-commitments-modal-open {
  overflow: hidden;
}

.strategic-partners {
  padding: 26px 0 24px;
}
.strategic-partners__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 80px;
  align-items: start;
}
.strategic-partners__column {
  min-width: 0;
}
.strategic-partners__title {
  margin: 0 0 46px;
  font-size: 28px;
  line-height: 1.08;
}
.strategic-partners__logos {
  display: flex;
  align-items: center;
  gap: 56px;
  flex-wrap: wrap;
}
.strategic-partners__logos--partners {
  min-height: 126px;
}
.strategic-partners__logos--support {
  min-height: 126px;
}
.strategic-partners__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.strategic-partners__logo:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}
.strategic-partners__logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.strategic-partners__logos--partners .strategic-partners__logo:nth-child(1) img {
  max-height: 82px;
}
.strategic-partners__logos--partners .strategic-partners__logo:nth-child(2) img {
  max-height: 98px;
}
.strategic-partners__logos--support .strategic-partners__logo:nth-child(1) img {
  max-height: 94px;
}
.strategic-partners__logos--support .strategic-partners__logo:nth-child(2) img {
  max-height: 72px;
}
.strategic-partners__divider {
  margin-top: 54px;
  width: 100%;
  height: 1px;
  background: #d6dcda;
}

@media (max-width: 1200px) {
  .strategic-partners__grid {
    gap: 48px;
  }
  .strategic-partners__title {
    font-size: 42px;
    margin-bottom: 32px;
  }
  .strategic-partners__logos {
    gap: 36px;
  }
}
@media (max-width: 767px) {
  .strategic-partners {
    padding: 24px 0 20px;
  }
  .strategic-partners .container {
    padding: 0 20px;
  }
  .strategic-partners__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .strategic-partners__title {
    font-size: 24px;
    margin-bottom: 24px;
  }
  .strategic-partners__logos {
    gap: 24px;
    min-height: auto;
  }
  .strategic-partners__logos--partners .strategic-partners__logo:nth-child(1) img {
    max-height: 56px;
  }
  .strategic-partners__logos--partners .strategic-partners__logo:nth-child(2) img {
    max-height: 66px;
  }
  .strategic-partners__logos--support .strategic-partners__logo:nth-child(1) img {
    max-height: 62px;
  }
  .strategic-partners__logos--support .strategic-partners__logo:nth-child(2) img {
    max-height: 46px;
  }
  .strategic-partners__divider {
    margin-top: 34px;
  }
}
.practices-bank {
  padding: 26px 0 40px;
}

.practices-bank__featured {
  display: grid;
  grid-template-columns: 430px 1fr;
  overflow: hidden;
  border-radius: 28px;
  background: #dfeef8;
  margin-block: 50px;
  width: 838px;
  margin-inline: auto;
}

.practices-bank__featured-image img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.practices-bank__featured-content {
  padding: 32px 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.practices-bank__featured-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 30px;
  padding: 0 14px;
  border-radius: 999px;
  background: #C9E6F8;
  color: #269BE3;
  font-size: 10px;
  font-family: var(--second-font);
  margin-bottom: 22px;
}

.practices-bank__featured-content h2 {
  margin: 0 0 18px;
  font-size: 24px;
  line-height: 1.2;
}

.practices-bank__featured-content p {
  margin: 0 0 24px;
}

.practices-bank__featured-button {
  min-width: 146px;
  min-height: 39px;
  padding: 0 22px;
  border-radius: 999px;
  background: #269BE3;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--second-font);
  align-self: flex-start;
  font-size: 14px;
}

.practices-bank__divider {
  width: 100%;
  height: 1px;
  background: #d6dcda;
  margin: 0 0 34px;
}

.practices-bank__filters {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.practices-bank__filters-left {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.practices-bank__filters-label {
  font-size: 14px;
  font-family: var(--second-font);
  color: #51696F;
}

.practices-bank__chips {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.practices-bank__chip {
  padding: 6px 20px;
  border-radius: 999px;
  border: 1px solid #d6dcda;
  font-size: 14px;
  text-decoration: none;
  color: #51696F;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #F1F3F3;
  font-family: var(--second-font);
}
.practices-bank__chip:hover {
  background-color: #E3E6E7;
  border: 1px solid #E3E6E7;
}

.practices-bank__chip.is-active {
  background: #1A84C7;
  color: white;
}

.practices-bank__filters-right select {
  min-width: 150px;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid #E3E6E7;
  background: #F8F9F9;
  color: #51696F;
}

.practices-bank__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.practices-card {
  overflow: hidden;
  border: 1px solid #d6dcda;
  border-radius: 20px;
  background: #f5f6f5;
}

.practices-card__image img {
  width: 100%;
  height: 213px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.practices-card__body {
  padding: 30px;
}

.practices-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.practices-card__date {
  font-size: 14px;
  color: #728890;
}

.practices-card__tag {
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: #E3E6E7;
  color: #269BE3;
  font-size: 10px;
  font-family: var(--second-font);
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
}

.practices-card h3 {
  margin: 0 0 14px;
  font-size: 18px;
  font-family: var(--second-font);
  line-height: 1.3;
  color: #17363F;
}

.practices-card p {
  margin: 0 0 22px;
}

.practices-card__link {
  color: #3196dc;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}
.practices-card__link span {
  display: flex;
  align-items: baseline;
  gap: 1rem;
}

@media (max-width: 1024px) {
  .practices-bank__featured {
    grid-template-columns: 1fr;
    width: 100%;
  }
  .practices-bank__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .practices-bank .container {
    padding: 0 16px;
  }
  .practices-bank__filters {
    flex-direction: column;
    align-items: flex-start;
  }
  .practices-bank__grid {
    grid-template-columns: 1fr;
  }
  .practices-bank__featured-content {
    padding: 24px 20px;
  }
  .practices-bank__featured-content h2 {
    font-size: 26px;
  }
}
#practicesBankContent {
  transition: opacity 0.2s ease;
}

#practicesBankContent.is-loading {
  opacity: 0.45;
  pointer-events: none;
}

#intro_banco h4 {
  font-family: var(--second-font);
  color: #51696f;
  font-size: 18px;
}

.practice-listing {
  padding: 20px 0 40px;
}
.practice-listing .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.practice-listing__filters {
  margin-bottom: 28px;
}
.practice-listing__filters-left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 14px;
}
.practice-listing__filters-label {
  font-size: 14px;
  line-height: 1.2;
  font-family: var(--second-font);
  color: #51696F;
  margin-right: 8px;
}
.practice-listing__chip {
  padding-block: 6px;
  padding-inline: 18px;
  border: 1px solid #E3E6E7;
  border-radius: 999px;
  background: #F1F3F3;
  color: #51696F;
  font-size: 14px;
  line-height: 1.2;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}
.practice-listing__chip:hover {
  background: #E3E6E7;
  border-color: #E3E6E7;
  color: #51696F;
}
.practice-listing__select {
  padding-right: 38px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  background-color: #F8F9F9;
  border: 1px solid #E3E6E7;
  border-radius: 30px;
  font-size: 14px;
  padding-block: 6px;
  padding-inline: 18px;
}
.practice-listing__chip.is-active {
  background: #eef3f1;
  border-color: #cfd8d5;
}
.practice-listing__list {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.practice-listing__empty {
  padding: 40px 0;
}
.practice-listing__empty p {
  margin: 0;
  font-size: 18px;
  color: #58707a;
}

.practice-item {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 30px;
  padding: 30px;
  border: 1px solid #d7dddb;
  border-radius: 28px;
  background: #f5f6f5;
}
.practice-item__image {
  display: block;
  border-radius: 14px;
  overflow: hidden;
}
.practice-item__image img {
  width: 100%;
  height: 220px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.practice-item__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.practice-item__content h3 {
  margin: 0 0 16px;
  font-size: 18px;
  font-family: var(--second-font);
  color: #17363F;
}
.practice-item__excerpt {
  margin-bottom: 24px;
}
.practice-item__excerpt p {
  margin: 0;
}
.practice-item__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #269BE3;
  text-decoration: none;
  font-family: var(--second-font);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.practice-item__link:hover {
  opacity: 0.82;
  transform: translateX(2px);
}
.practice-item__link svg {
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .practice-item {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .practice-item__image img {
    height: 260px;
  }
}
@media (max-width: 767px) {
  .practice-listing .container {
    padding: 0 16px;
  }
  .practice-listing__filters-left {
    align-items: flex-start;
  }
  .practice-listing__filters-label {
    width: 100%;
    margin-right: 0;
    margin-bottom: 4px;
  }
  .practice-listing__select, .practice-listing__chip {
    font-size: 15px;
    min-height: 40px;
    padding: 0 14px;
  }
  .practice-item {
    padding: 18px;
    border-radius: 20px;
  }
  .practice-item__image img {
    height: 200px;
  }
  .practice-item__content h3 {
    font-size: 22px;
  }
  .practice-item__excerpt p {
    font-size: 16px;
  }
  .practice-item__link {
    font-size: 16px;
  }
}
#fique h4 {
  font-family: var(--second-font);
  font-size: 18px;
  color: #51696F;
}

.practice-single__meta {
  margin: 12px 0 28px;
}
.practice-single__meta span {
  font-size: 16px;
  color: #8a9aa1;
  line-height: 1.4;
}

.practice-single__wrapper {
  border: 1px solid #D1D5DB;
  border-radius: 30px;
  padding: 30px;
  margin-bottom: 3rem;
}
.practice-single__wrapper .practice-single__image, .practice-single__wrapper .wp-block-image {
  text-align: center;
}

.custom-cf7-form {
  background-color: #F1F3F3;
  border: 1px solid #E3E6E7;
  border-radius: 20px;
  padding: 20px;
  font-family: sans-serif;
  width: 1000px;
  margin: 0 auto;
  margin-block: 50px;
}
.custom-cf7-form .form-row {
  display: grid;
  gap: 20px;
  margin-bottom: 20px;
}
.custom-cf7-form .form-row.col-3 {
  grid-template-columns: repeat(3, 1fr);
}
.custom-cf7-form .form-group {
  display: flex;
  flex-direction: column;
}
.custom-cf7-form .form-group label {
  color: #17363F;
  font-size: 14px;
  margin-bottom: 10px;
}
.custom-cf7-form .form-group input[type=text],
.custom-cf7-form .form-group input[type=email],
.custom-cf7-form .form-group input[type=tel],
.custom-cf7-form .form-group input[type=number] {
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #E3E6E7;
  border-radius: 50px;
  padding: 14px 20px;
  font-size: 0.95rem;
  color: #4a5568;
  outline: none;
  transition: border-color 0.3s;
  box-sizing: border-box;
}
.custom-cf7-form .form-group input[type=text]::-moz-placeholder, .custom-cf7-form .form-group input[type=email]::-moz-placeholder, .custom-cf7-form .form-group input[type=tel]::-moz-placeholder, .custom-cf7-form .form-group input[type=number]::-moz-placeholder {
  color: #a0aec0;
  font-size: 14px;
}
.custom-cf7-form .form-group input[type=text]::placeholder,
.custom-cf7-form .form-group input[type=email]::placeholder,
.custom-cf7-form .form-group input[type=tel]::placeholder,
.custom-cf7-form .form-group input[type=number]::placeholder {
  color: #a0aec0;
  font-size: 14px;
}
.custom-cf7-form .form-group input[type=text]:focus,
.custom-cf7-form .form-group input[type=email]:focus,
.custom-cf7-form .form-group input[type=tel]:focus,
.custom-cf7-form .form-group input[type=number]:focus {
  border-color: #4a90e2;
}
.custom-cf7-form .form-group textarea {
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 16px 20px;
  font-size: 14px;
  color: #4a5568;
  outline: none;
  resize: vertical;
  height: 80px;
  transition: border-color 0.3s;
  box-sizing: border-box;
}
.custom-cf7-form .form-group textarea::-moz-placeholder {
  color: #a0aec0;
  font-size: 14px;
  font-family: var(--primary-font);
}
.custom-cf7-form .form-group textarea::placeholder {
  color: #a0aec0;
  font-size: 14px;
  font-family: var(--primary-font);
}
.custom-cf7-form .form-group textarea:focus {
  border-color: #4a90e2;
}
.custom-cf7-form .split-group {
  flex-direction: row;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 15px;
}
.custom-cf7-form .split-group .sub-group {
  display: flex;
  flex-direction: column;
}
.custom-cf7-form .form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  gap: 30px;
}
.custom-cf7-form .form-footer .footer-text {
  color: #51696F;
  font-size: 12px;
  line-height: 1.5;
}
.custom-cf7-form .form-footer .footer-text strong {
  color: #4a5568;
}
.custom-cf7-form .form-footer .submit-wrapper {
  flex-shrink: 0;
}
.custom-cf7-form .form-footer .submit-wrapper .custom-btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #269BE3;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}
.custom-cf7-form .form-footer .submit-wrapper .custom-btn-submit:hover {
  background-color: #2c5d8f;
}
.custom-cf7-form .form-footer .submit-wrapper .custom-btn-submit svg {
  width: 18px;
  height: 18px;
}
@media (max-width: 992px) {
  .custom-cf7-form .form-row.col-3 {
    grid-template-columns: 1fr;
  }
  .custom-cf7-form .split-group {
    grid-template-columns: 1fr 1fr;
  }
  .custom-cf7-form .form-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .custom-cf7-form .form-footer .submit-wrapper {
    width: 100%;
  }
  .custom-cf7-form .form-footer .submit-wrapper .custom-btn-submit {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .custom-cf7-form {
    padding: 25px 20px;
  }
  .custom-cf7-form .split-group {
    grid-template-columns: 1fr;
  }
}

#img_vene {
  margin-block: 50px;
}

.form-vaga {
  background-color: #F1F3F3;
  border-radius: 16px;
  border: 1px solid #E3E6E7;
  padding: 20px;
}
.form-vaga .form-row {
  display: grid;
  gap: 20px;
  margin-bottom: 25px;
}
.form-vaga .form-row.col-2 {
  grid-template-columns: repeat(2, 1fr);
}
.form-vaga .form-row.col-2-1-1 {
  grid-template-columns: 2fr 1fr 1fr;
}
.form-vaga .row-moradia-apoio {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: start;
}
.form-vaga .row-moradia-apoio .group-moradia {
  flex-shrink: 0;
  margin-right: 15px;
}
.form-vaga .row-moradia-apoio .group-capacidade {
  flex: 1;
  min-width: 200px;
}
.form-vaga .row-moradia-apoio .group-apoio {
  flex: 2;
  min-width: 100%;
}
.form-vaga .form-group {
  display: flex;
  flex-direction: column;
}
.form-vaga .form-group label {
  color: #1F2937;
  font-size: 14px;
  margin-bottom: 10px;
  display: block;
}
.form-vaga .form-group input[type=text],
.form-vaga .form-group input[type=email],
.form-vaga .form-group input[type=tel],
.form-vaga .form-group select {
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 50px;
  padding: 14px 20px;
  font-size: 0.95rem;
  color: #4a5568;
  outline: none;
  transition: border-color 0.3s;
  box-sizing: border-box;
}
.form-vaga .form-group input[type=text]::-moz-placeholder, .form-vaga .form-group input[type=email]::-moz-placeholder, .form-vaga .form-group input[type=tel]::-moz-placeholder, .form-vaga .form-group select::-moz-placeholder {
  color: #a0aec0;
}
.form-vaga .form-group input[type=text]::placeholder,
.form-vaga .form-group input[type=email]::placeholder,
.form-vaga .form-group input[type=tel]::placeholder,
.form-vaga .form-group select::placeholder {
  color: #a0aec0;
}
.form-vaga .form-group input[type=text]:focus,
.form-vaga .form-group input[type=email]:focus,
.form-vaga .form-group input[type=tel]:focus,
.form-vaga .form-group select:focus {
  border-color: #4a90e2;
}
.form-vaga .form-group .custom-select-wrapper {
  position: relative;
}
.form-vaga .form-group .custom-select-wrapper select {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 40px;
}
.form-vaga .form-group .custom-select-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 12px;
  height: 8px;
  background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 14 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 1L7 7L13 1" stroke="%23A0AEC0" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-repeat: no-repeat;
  pointer-events: none;
}
.form-vaga .custom-radio-group .wpcf7-list-item {
  margin: 0 15px 0 0;
  display: inline-block;
}
.form-vaga .custom-radio-group .wpcf7-list-item label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
  margin: 0;
}
.form-vaga .custom-radio-group .wpcf7-list-item label input[type=radio] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid #cbd5e1;
  border-radius: 50%;
  margin: 0 8px 0 0;
  position: relative;
  outline: none;
  cursor: pointer;
  background: #fff;
  flex-shrink: 0;
}
.form-vaga .custom-radio-group .wpcf7-list-item label input[type=radio]:checked {
  border-color: #4a90e2;
  background-color: #4a90e2;
}
.form-vaga .custom-radio-group .wpcf7-list-item label input[type=radio]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background-color: #fff;
  border-radius: 50%;
}
.form-vaga .form-footer.right-align {
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
}
.form-vaga .form-footer.right-align .custom-btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #269BE3;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}
.form-vaga .form-footer.right-align .custom-btn-submit:hover {
  background-color: #2c5d8f;
}
@media (max-width: 992px) {
  .form-vaga .form-row.col-2,
  .form-vaga .form-row.col-2-1-1 {
    grid-template-columns: 1fr;
  }
  .form-vaga .row-moradia-apoio {
    flex-direction: column;
    align-items: flex-start;
  }
  .form-vaga .row-moradia-apoio .group-capacidade {
    width: 100%;
  }
}
@media (min-width: 993px) {
  .form-vaga .row-moradia-apoio .group-apoio {
    flex: unset;
    width: 100%;
    margin-top: 10px;
  }
}

.cf7-hidden-input {
  display: none !important;
}

.search-box {
  position: relative;
  max-width: 450px;
  margin-bottom: 40px;
}
.search-box .search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.search-box .search-icon svg {
  width: 20px;
  height: 20px;
  stroke: #9CA3AF;
}
.search-box select#filter-states {
  width: 100%;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-color: #ffffff;
  border: 1px solid #D1D5DB;
  border-radius: 50px;
  padding: 16px 45px 16px 52px;
  font-size: 1rem;
  font-family: inherit;
  color: #4B5563;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
  background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 14 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 1L7 7L13 1" stroke="%239CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 12px;
}
.search-box select#filter-states:focus {
  border-color: #4a90e2;
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.15);
}
.search-box select#filter-states:invalid,
.search-box select#filter-states option[value=""] {
  color: #9CA3AF;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #F8F9F9;
  transition: all 0.3s ease;
  z-index: 9999;
  padding: 25px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  /* Quando fizer o scroll (Fixo no topo) */
}
.site-header.is-sticky {
  position: fixed;
  background-color: #ffffff;
  padding: 15px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.site-header .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
.site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 50px;
}
.site-header .header-logo {
  flex-shrink: 0;
}
.site-header .header-logo img {
  height: 45px;
  width: auto;
  display: block;
}
.site-header .header-navigation .nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 32px;
}
.site-header .header-navigation .nav-list li a {
  text-decoration: none;
  color: #1F2937; /* Cinza escuro */
  font-size: 15px;
  font-family: var(--second-font);
  transition: color 0.2s;
}
.site-header .header-navigation .nav-list li a:hover {
  color: #2563EB; /* Azul hover */
}
.site-header .header-navigation .nav-list li {
  /* A tag "Novo" */
}
.site-header .header-navigation .nav-list li.item-novo > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.site-header .header-navigation .nav-list li.item-novo > a::after {
  content: "Novo";
  background-color: #DBEAFE;
  color: #1D4ED8;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 12px;
}
.site-header {
  /* O botão mobile do Hambúrguer */
}
.site-header .mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1000;
}
.site-header .mobile-menu-toggle .hamburger-box {
  width: 24px;
  height: 18px;
  display: inline-block;
  position: relative;
}
.site-header .mobile-menu-toggle .hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1px;
  width: 24px;
  height: 2px;
  background-color: #1F2937;
  position: absolute;
  transition: transform 0.15s ease;
}
.site-header .mobile-menu-toggle .hamburger-inner::before, .site-header .mobile-menu-toggle .hamburger-inner::after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background-color: #1F2937;
  position: absolute;
  transition: transform 0.15s ease;
}
.site-header .mobile-menu-toggle .hamburger-inner::before {
  top: -7px;
}
.site-header .mobile-menu-toggle .hamburger-inner::after {
  bottom: -7px;
}
.site-header .mobile-menu-toggle.is-active .hamburger-inner {
  transform: rotate(45deg);
}
.site-header .mobile-menu-toggle.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
.site-header .mobile-menu-toggle.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

/* --- RESPONSIVO --- */
@media (max-width: 1100px) {
  .site-header .header-navigation .nav-list {
    gap: 15px;
  }
  .site-header .header-navigation .nav-list li a {
    font-size: 14px;
  }
}
@media (max-width: 992px) {
  .site-header .header-navigation {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: left 0.3s ease;
    z-index: 998;
  }
  .site-header .header-navigation.is-open {
    left: 0;
  }
  .site-header .header-navigation .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }
  .site-header .header-navigation .nav-list li {
    width: 100%;
    text-align: center;
  }
  .site-header .header-navigation .nav-list li a {
    font-size: 20px;
  }
  .site-header .mobile-menu-toggle {
    display: block;
  }
}
.contact-section {
  margin-block-end: 50px;
  margin-block-start: 90px;
}
.contact-section a {
  color: #269BE3;
}
.contact-section .contact-section__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
@media (max-width: 990px) {
  .contact-section .contact-section__content {
    grid-template-columns: 1fr;
  }
}
.contact-section .contact-section__form-wrap {
  background-color: #F1F3F3;
  border: 1px solid #E3E6E7;
  padding: 20px;
  border-radius: 20px;
}
.contact-section textarea {
  font-family: var(--primary-font);
}
.contact-section h3 {
  font-size: 18px;
  font-family: var(--second-font);
  margin-bottom: 12px;
  margin-top: 40px;
}
.contact-section .contact-list {
  gap: 4px;
}

.plataformas-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.plataformas-wrapper .plataforma-card {
  background-color: #F1F3F3;
  border: 1px solid #E3E6E7;
  border-radius: 20px;
  padding: 30px;
  font-family: inherit;
}
.plataformas-wrapper .plataforma-card .plataforma-title {
  color: #269BE3;
  font-size: 16px;
  font-family: var(--second-font);
  margin: 0 0 16px 0;
}
.plataformas-wrapper .plataforma-card .plataforma-content {
  font-size: 15px;
  color: #374151;
  line-height: 1.6;
  margin-bottom: 24px;
}
.plataformas-wrapper .plataforma-card .plataforma-divider {
  border-top: 1px solid #C5CDCF;
  margin: 24px 0;
}
.plataformas-wrapper .plataforma-card .plataforma-meta-section {
  font-size: 14px;
}
.plataformas-wrapper .plataforma-card .plataforma-meta-section .plataforma-meta-title {
  color: #51696F;
  font-family: var(--second-font);
  margin: 0 0 16px 0;
  font-size: 14px;
}
.plataformas-wrapper .plataforma-card .plataforma-meta-section .plataforma-meta-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 8px;
  gap: 5px;
  line-height: 1.5;
}
.plataformas-wrapper .plataforma-card .plataforma-meta-section .plataforma-meta-row .plataforma-meta-label {
  color: #A8B4B7;
  font-family: var(--second-font);
  flex-shrink: 0;
}
.plataformas-wrapper .plataforma-card .plataforma-meta-section .plataforma-meta-row .plataforma-meta-value {
  color: #374151;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.plataformas-wrapper .plataforma-card .plataforma-meta-section .plataforma-meta-row .plataforma-meta-value a {
  color: #51696F;
  text-decoration: underline;
  transition: color 0.2s;
}
.plataformas-wrapper .plataforma-card .plataforma-meta-section .plataforma-meta-row .plataforma-meta-value a:hover {
  color: #269BE3;
}

.site-header .header-navigation .nav-list li.current_page_item a {
  color: #F5B400;
}

.site-header .header-navigation .nav-list li a:hover {
  color: #F5B400;
}

.counte {
  display: none;
}

@media (max-width: 990px) {
  #video {
    margin-block-end: 0;
  }
  #video iframe {
    width: 100%;
    height: 300px;
  }
  .support-network {
    margin-top: 20px;
  }
  .support-network__container {
    width: 100%;
  }
  #sbore_h h2, h2 {
    font-size: 24px;
  }
  #sbore_h .grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  #sbore_h .img img {
    width: 240px;
  }
  #sbore_h .project-actions {
    display: block;
  }
  #sbore_h .project-actions .btn-project {
    width: 100% !important;
    margin-bottom: 10px;
  }
  .impact-cases__subtitle {
    font-size: 14px;
  }
  .contact-section {
    margin-block-start: 0;
    padding-top: 0;
  }
  .contact-section__container {
    width: 100%;
  }
  .membership-section__title {
    font-size: 28px;
  }
  .agenda-forum__featured-date {
    font-size: 18px;
  }
  .agenda-forum__events {
    padding: 0;
  }
  .agenda-forum__events-head, .number {
    display: none;
  }
  .agenda-forum__featured-title {
    font-size: 20px;
  }
  .guided-step__card {
    position: relative;
  }
  .guided-step__card .counte {
    color: #cfe6fa;
    font-family: var(--second-font);
    font-size: 28px;
    display: flex;
    gap: 45px;
    align-items: center;
    position: absolute;
    top: 2rem;
    right: 2rem;
    display: block;
  }
  .guided-step h3 {
    font-size: 18px;
  }
  .guided-step__icon {
    margin-inline: auto;
    margin-bottom: 1rem;
  }
  .ong-locator__map-bg svg.map {
    width: 463px;
    height: 457px;
    transform: scale(0.7);
    margin: -100px;
  }
  .ong-locator__map-bg {
    display: block;
  }
  .faq-section__title {
    font-size: 20px;
  }
  .form-vaga {
    width: 100%;
  }
  .ongs-accordion-section .container {
    width: 100%;
    padding: 0;
  }
  .vc-search input {
    width: 100% !important;
  }
  .hubs-section__header h2 {
    font-size: 24px;
  }
  .hubs-card__icon {
    margin-inline: auto;
  }
  .hubs-card__icon img {
    width: 50px;
    height: auto;
    margin-inline: auto;
  }
  .hub-single-page .hub-header-logos img {
    width: 100%;
  }
  .hub-bottom-sections {
    margin-top: 2rem;
  }
  .hub-bottom-sections .section-title {
    font-size: 20px;
  }
  .hub-bottom-sections .employability-row .employability-illustration {
    display: none;
  }
  .news-slider {
    padding-top: 0;
  }
  .news-slider__header h2 {
    font-size: 20px;
  }
  .news-slider__container {
    width: 100%;
    padding: 0;
  }
  .redes-empregabilidade-section .container {
    display: block;
  }
  .redes-empregabilidade-section .content-image, .contact-highlight__icon {
    display: none;
  }
  .employability-network__header h2 {
    font-size: 24px;
  }
  .employability-network__header p, .boas-praticas-modal__body p, .contact-highlight__text {
    font-size: 14px;
  }
  .employability-network__icon img {
    width: 64px;
    height: auto;
  }
  .employability-network__item p {
    font-size: 18px;
  }
  .boas-praticas {
    padding-top: 0;
    padding-bottom: 0;
  }
  .boas-praticas__header h2 {
    font-size: 24px;
  }
  .boas-praticas-modal__title {
    font-size: 18px;
  }
  .contact-highlight__row {
    display: block;
  }
  .contact-highlight__title {
    font-size: 24px;
  }
  .practice-item__content h3 {
    font-size: 18px;
  }
  .practice-single__wrapper .practice-single__image img, .practice-single__wrapper .wp-block-image img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    height: auto;
  }
  #sbore_h h2, h2 {
    font-size: 18px;
  }
}/*# sourceMappingURL=main.css.map */