/* Inline @font-face to avoid render-blocking request */
@font-face {
  font-family: 'Albra';
  src: url('fonts/Albra-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --text: #212A1F;
  --verde-escuro: #1B2314;
  --verde: #939D91;
  --verde-claro: #BCFFAD;
  --roxo: #BEC2F0;
  --azul: #b6e4fc;
  --laranja: #FFA869;
  --cinza: #EAF0E9;
  --rosa: #eacede;
  --salmao: #e9bdb0;
  --bege: #eddfce;
  --space-lg: 10rem;
  --space-md: 5rem;
  --space-sm: 2rem;
}

html {
  font-size: 70%;
}

@media screen and (max-width: 2000px) {
  html {
    font-size: 0.7vw;
  }
}

@media screen and (max-width: 860px) {
  html {
    font-size: 62.5%;
  }

  html .grecaptcha-badge {
    display: none !important;
  }
}

body {
  font-family: "Instrument Sans";
  font-weight: 500;
  padding-top: 5.8rem;
}

body.admin-bar {
  padding-top: 32px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.albra {
  font-weight: 500;
  font-family: "Albra";
}

.relative {
  position: relative;
}

.container {
  max-width: 95%;
}

.container--smaller {
  max-width: 80%;
}

@media screen and (max-width: 860px) {
  .container--smaller {
    max-width: 95%;
  }
}

.gap16 {
  gap: 1.6rem;
}

.content {
  padding: 15rem 0 10rem;
  background-color: var(--verde-escuro);
  color: white;
}

.content__title {
  font-size: 4rem;
}

.content a {
  text-decoration: underline;
}

.header {
  background-color: var(--verde-escuro);
  color: white;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2rem 0;
  z-index: 5;
}

body.admin-bar .header {
  top: 2.4rem;
}

@media screen and (max-width: 860px) {
  body.admin-bar .header {
    top: 0;
  }
}

.header--light {
  background-color: var(--cinza);
  color: var(--verde-escuro);
}

.header--light .header__logo {
  filter: brightness(0) saturate(100%) invert(10%) sepia(15%) saturate(1369%) hue-rotate(49deg) brightness(92%) contrast(91%);
}

.header--light .header__toggle--open svg line {
  stroke: var(--verde-escuro);
}

@media screen and (max-width: 860px) {
  .header .container {
    position: static;
  }
}

.header__logoholder {
  position: absolute;
  left: 15px;
  top: 0;
}

@media screen and (max-width: 860px) {
  .header__logoholder {
    top: 1.5rem;
    left: 5%;
  }
}

.header__logo {
  width: auto;
  height: 8rem;
  display: block;
  transition: all 400ms ease;
}

.header.scrolled .header__logo {
  height: 3rem;
}

@media screen and (max-width: 860px) {
  .header.scrolled .header__toggle--open {
    top: 0;
  }
}

.header__row {
  -moz-column-gap: 10rem;
  column-gap: 10rem;
}

@media screen and (max-width: 860px) {
  .header__row {
    max-height: 0;
    height: 0;
    overflow: hidden;
    transition: all 600ms ease;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--verde);
    flex-direction: column;
    width: 100%;
    row-gap: 5rem;
    align-items: center;
    text-align: center;
    padding: 0;
    flex-wrap: nowrap !important;
    z-index: 3;
  }
}

.header.menu-open {
  color: var(--verde-escuro);
}

.header.menu-open .header__row {
  max-height: 100vh;
  height: 100vh;
  padding: 4rem 2rem;
}

.header__nav__menu {
  -moz-column-gap: 3rem;
  column-gap: 3rem;
  text-transform: uppercase;
}

@media screen and (max-width: 860px) {
  .header__nav__menu {
    flex-direction: column;
  }
}

.header__nav__menu a {
  font-weight: 700;
  font-size: 1.4rem;
}

@media screen and (max-width: 860px) {
  .header__nav__menu a {
    font-size: 3.2rem;
  }
}

.header__nav__menu a:hover {
  text-decoration: underline;
}

.header__language {
  align-items: center;
}

.header__language span {
  margin: 0 0.5rem;
}

@media screen and (max-width: 860px) {
  .header__language span {
    font-size: 3.2rem;
    margin: 0 1rem;
  }
}

.header__language a {
  font-size: 1.4rem;
  font-weight: 700;
}

@media screen and (max-width: 860px) {
  .header__language a {
    font-size: 3.2rem;
  }
}

.header__toggle {
  display: none;
  background-color: transparent;
  position: relative;
  transition: top 500ms ease;
}

.header__toggle--close {
  margin-bottom: 10rem;
}

.header__toggle--open {
  top: 3rem;
}

@media screen and (max-width: 860px) {
  .header__toggle {
    display: block;
  }
}

.contato {
  border-top: solid 1px white;
  background-color: var(--verde-escuro);
  padding: 8rem 0;
  color: white;
}

.contato--bottom-border {
  border-bottom: solid 1px white;
}

.contato__grid {
  display: grid;
  grid-template-columns: 31.8rem 1fr;
  -moz-column-gap: 10rem;
  column-gap: 10rem;
  row-gap: 4rem;
}

@media screen and (max-width: 860px) {
  .contato__grid {
    grid-template-columns: 1fr;
  }
}

.contato__form br {
  display: none;
}

.contato__form__row>p {
  display: flex;
  gap: 1.5rem;
}

@media screen and (max-width: 860px) {
  .contato__form__row>p {
    flex-direction: column;
  }
}

.contato__form__row>p>label {
  flex: 1 1 50%;
}

.contato__form__field {
  display: block;
  width: 100%;
  background-color: transparent;
  border: 0;
  border-bottom: solid 1px white;
  color: white;
  font-weight: 500;
  font-size: 1.4rem;
  padding: 0.5rem;
  margin-bottom: 3rem;
}

.contato__form__field::-moz-placeholder {
  color: rgba(255, 255, 255, 0.29);
  text-transform: uppercase;
}

.contato__form__field::placeholder {
  color: rgba(255, 255, 255, 0.29);
  text-transform: uppercase;
}

.contato__form__button {
  border: solid 1px white;
  border-radius: 3rem;
  color: white;
  padding: 1rem 3rem;
  background: transparent;
  font-size: 1.4rem;
  text-transform: uppercase;
}

.contato__form__button:hover {
  background-color: white;
  color: var(--verde-escuro);
}

.contato__form .flex-between {
  gap: 1.5rem;
}

.contato__form .flex-between label {
  font-size: 1.2rem;
}

.contato__form .flex-between label a {
  text-decoration: underline;
}

.contato__form .flex-between input[type=checkbox] {
  position: relative;
  top: 0.2rem;
  margin-right: 1rem;
}

.contato__form .flex-between p {
  flex: 1 1 50%;
}

.contato--newsletter form {
  width: 50%;
}

@media screen and (max-width: 860px) {
  .contato--newsletter form {
    width: 100%;
  }
}

.infoscontato {
  border-bottom: solid 1px white;
  padding: 4rem 0;
}

.infoscontato .container {
  gap: 5rem;
}

@media screen and (max-width: 860px) {
  .infoscontato .container {
    align-items: flex-start;
  }
}

.infoscontato img {
  max-width: 5rem;
  display: block;
}

.infoscontato p {
  margin-bottom: 0.5em;
}

.infoscontato a {
  font-size: 2.4rem;
}

@media screen and (max-width: 860px) {
  .infoscontato>.container>[style*="visibility: hidden"] {
    display: none;
  }
}

.footer {
  background-color: var(--verde-escuro);
  padding: 10rem 0 3rem;
  overflow: hidden;
  color: white;
}

.footer__title {
  font-size: 6rem;
  margin-bottom: 10rem;
}

.footer__logo {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 5rem;
}

.footer__copy {
  padding-top: 3rem;
  border-top: solid 1px white;
}

.footer__copy p {
  margin: 0;
}

@media screen and (max-width: 860px) {
  .footer__copy p {
    font-size: 1.2rem;
  }
}

.home-hero {
  background-color: var(--verde-escuro);
  color: white;
  position: relative;
  padding-bottom: 10rem;
}

@media screen and (max-width: 860px) {
  .home-hero {
    padding: 2.5rem 0 16rem;
  }
}

.home-hero__title {
  font-size: 14rem;
  line-height: 0.9em;
  position: relative;
  z-index: 2;
  position: absolute;
  bottom: 7.5rem;
  left: 10%;
}

@media screen and (max-width: 860px) {
  .home-hero__title {
    font-size: 9rem;
    bottom: 0;
    left: 5%;
  }
}

.home-hero__title span {
  display: block;
}

.home-hero__videoholder {
  width: 66%;
  margin: 0 0 0 auto;
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 35rem;
  max-height: 80vh;
}

@media screen and (max-width: 860px) {
  .home-hero__videoholder {
    width: 85%;
    aspect-ratio: 328/583;
  }
}

.home-hero__videoholder video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.home-hero__links {
  margin: 4rem 2.5% 0 0;
  -moz-column-gap: 1.5rem;
  column-gap: 1.5rem;
}

@media screen and (max-width: 860px) {
  .home-hero__links {
    display: none;
  }
}

.home-hero__links a {
  color: var(--verde-claro);
  font-size: 2.4rem;
  font-weight: 700;
  display: table;
  border: solid 0.3rem var(--verde-claro);
  border-radius: 3rem;
  padding: 0.6rem 2rem;
  text-transform: uppercase;
  transition: all 400ms ease;
}

.home-hero__links a:hover {
  background-color: var(--verde-claro);
  color: var(--verde-escuro);
}

.home-hero__links a:nth-child(2) {
  color: var(--roxo);
  border-color: var(--roxo);
}

.home-hero__links a:nth-child(2):hover {
  background-color: var(--roxo);
  color: var(--verde-escuro);
}

.home-hero__links a:nth-child(3) {
  color: var(--laranja);
  border-color: var(--laranja);
}

.home-hero__links a:nth-child(3):hover {
  background-color: var(--laranja);
  color: var(--verde-escuro);
}

.pilares {
  background-color: var(--verde-escuro);
  padding: 6rem 0 10rem;
  color: white;
}

.pilares--bottom-border {
  border-bottom: 1px solid white;
}

.pilares__title {
  font-size: 1.6rem;
  font-weight: 600;
  font-family: "Instrument Sans";
  margin-bottom: 5rem;
}

.pilares__itens {
  gap: 8rem;
}

@media screen and (max-width: 860px) {
  .pilares__itens {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.pilares__item {
  padding-left: 3rem;
  position: relative;
}

@media screen and (max-width: 860px) {
  .pilares__item {
    transition-delay: 500ms !important;
  }
}

.pilares__item::before {
  content: "";
  width: 1px;
  height: 8rem;
  background-color: white;
  position: absolute;
  left: 0;
  top: 0;
}

.pilares__item__title {
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.pilares__item__text {
  font-size: 1.6rem;
  font-weight: 500;
}

.certificado {
  border: solid 1px white;
  border-left: 0;
  border-right: 0;
  padding: 6rem 0;
  color: white;
  background-color: var(--verde-escuro);
}

@media screen and (max-width: 860px) {
  .certificado .container {
    align-items: center;
    flex-direction: column;
    row-gap: 4rem;
  }
}

.certificado__image {
  max-width: 8rem;
  height: auto;
  display: block;
}

.certificado__text {
  max-width: 78.5rem;
  font-size: 2.4rem;
}

@media screen and (max-width: 860px) {
  .certificado__text {
    font-size: 2rem;
  }
}

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

.parceiros {
  padding: 8rem 0 4rem;
  background-color: var(--verde-escuro);
  color: white;
}

.parceiros__title {
  margin-bottom: 3rem;
  font-size: 3.2rem;
}

.parceiros__marquee-container {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}

.parceiros__marquee-track {
  display: inline-flex;
  align-items: center;
  padding-left: 100%;
  animation: marquee 65s linear infinite;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.parceiros__marquee-track img {
  height: 6.5rem;
  width: auto;
  flex-shrink: 0;
}

@keyframes marquee {
  0% {
    transform: translateX(0) translateZ(0);
    /* Start position */
  }

  100% {
    transform: translateX(-100%) translateZ(0);
    /* End position (moves left by 100% of its own width) */
  }
}

.servicos {
  background-color: var(--verde-escuro);
  color: white;
  padding: 8rem 0 6rem;
}

.servicos__title {
  font-size: 11.8rem;
  margin-bottom: 6rem;
}

@media screen and (max-width: 860px) {
  .servicos__title {
    font-size: 5.5rem;
  }
}

.servicos__grid {
  -moz-column-gap: 15rem;
  column-gap: 15rem;
}

@media screen and (max-width: 860px) {
  .servicos__grid {
    grid-template-columns: 1fr;
    row-gap: 5rem;
  }
}

@media screen and (max-width: 860px) {
  .servicos__item {
    transition-delay: 500ms !important;
  }
}

.servicos__item__title {
  color: var(--verde-claro);
  font-size: 2.4rem;
  font-weight: 700;
  display: table;
  border: solid 0.3rem var(--verde-claro);
  border-radius: 3rem;
  padding: 0.6rem 2rem;
  text-transform: uppercase;
  transition: all 400ms ease;
  margin-bottom: 3rem;
  font-family: "Instrument Sans";
}

.servicos__item:nth-child(2) .servicos__item__title {
  color: var(--roxo);
  border-color: var(--roxo);
}

.servicos__item:nth-child(3) .servicos__item__title {
  color: var(--laranja);
  border-color: var(--laranja);
}

.servicos__item__descricao {
  line-height: 1.3em;
  min-height: 5.2em;
  margin-bottom: 2rem;
}

@media screen and (max-width: 860px) {
  .servicos__item__descricao {
    min-height: initial;
  }
}

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

.servicos__item__list li {
  font-size: 3.2rem;
}

.premios {
  border: solid 1px white;
  border-left: 0;
  border-right: 0;
  padding: 6rem 0;
  color: white;
  background-color: var(--verde-escuro);
}

.premios__title {
  font-size: 3.2rem;
}

.premios__text {
  max-width: 78.5rem;
}

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

.posts {
  background-color: var(--verde-escuro);
  padding: 8rem 0;
  color: white;
}

@media screen and (max-width: 860px) {
  .posts .container {
    max-width: 100%;
    padding: 0;
  }
}

.posts__title {
  font-size: 3.2rem;
  margin-bottom: 3rem;
}

@media screen and (max-width: 860px) {
  .posts__title {
    padding-left: 5%;
  }
}

.posts__slider {
  margin: 0 -1rem;
}

@media screen and (max-width: 860px) {
  .posts__slider {
    display: flex;
    overflow: auto;
    gap: 1.6rem;
    margin: 0;
    padding: 0 5% 1rem;
  }
}

.posts__slider .slick-slide {
  margin: 0 1rem;
}

.posts__slider .slick-list {
  overflow: initial;
}

@media screen and (max-width: 860px) {
  .posts__slider__item {
    min-width: 28rem;
  }
}

.posts__slider__item__thumb {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 4/5;
  display: block;
}

.posts__slider__item__content {
  background-color: var(--verde-claro);
  color: var(--text);
  padding: 2rem 2rem 0;
  display: none;
}

.posts__slider__item__content.azul {
  background-color: var(--azul);
}

.posts__slider__item__content.bege {
  background-color: var(--bege);
}

.posts__slider__item__content.salmao {
  background-color: var(--salmao);
}

.posts__slider__item__content.rosa {
  background-color: var(--rosa);
}

.posts__slider__item__content__title {
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1em;
  min-height: 2em;
  margin-bottom: 6rem;
}

.posts__slider__item__content__logo {
  background: url("../images/logo.svg") no-repeat center/cover;
  filter: brightness(0);
  width: 3.2rem;
  height: 3rem;
}

.projetos {
  background-color: var(--cinza);
  padding: 10rem 0;
}

.projetos--home {
  padding: 8rem 0;
  background-color: var(--verde);
}

.projetos__title {
  font-size: 3.2rem;
  margin-bottom: 3rem;
}

.projetos__filters {
  margin-bottom: 3rem;
  margin-top: 6rem;
}

@media screen and (max-width: 860px) {
  .projetos__filters {
    row-gap: 2rem;
  }
}

.projetos__filters p {
  font-size: 2rem;
  margin: 0;
}

@media screen and (max-width: 860px) {
  .projetos__filters p {
    width: 100%;
  }
}

@media screen and (max-width: 860px) {
  .projetos__filters .gap20 {
    gap: 1rem;
  }
}

.projetos__filters__option {
  border: solid 0.3rem var(--verde-escuro);
  border-radius: 3rem;
  padding: 0.6rem 2rem;
  background-color: transparent;
  font-weight: 700;
  font-size: 2rem;
  text-transform: uppercase;
  height: 4rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.projetos__filters__option:has(input:checked) {
  background-color: var(--verde-escuro);
  color: var(--cinza);
}

.projetos__filters__option:not(.act):hover {
  background-color: var(--verde-escuro);
  color: var(--cinza);
}

@media screen and (max-width: 860px) {
  .projetos__filters__option {
    font-size: 1.6rem;
  }
}

.projetos__filters__option.act {
  background-color: var(--verde-escuro);
  color: var(--cinza);
}

.js-feedback-form {
  position: relative;
}

.form-feedback {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--verde-claro);
  font-weight: 700;
  font-size: 2.4rem;
  opacity: 0;
  transition: opacity 0.5s ease;
  text-align: center;
  width: 100%;
}

.form-feedback.show {
  opacity: 1;
}

.projetos__filters__field {
  width: 41.7rem;
  border: solid 0.3rem var(--verde-escuro);
  border-radius: 3rem;
  padding: 0.6rem 2rem;
  background-color: transparent;
  line-height: 2.5rem;
  height: 4rem;
}

@media screen and (max-width: 860px) {
  .projetos__filters__field {
    width: calc(100% - 13rem);
  }
}

.projetos__filters__button {
  border: solid 0.3rem var(--verde-escuro);
  border-radius: 3rem;
  padding: 0.6rem 2rem;
  background-color: transparent;
  font-weight: 700;
  font-size: 2rem;
  text-transform: uppercase;
  height: 4rem;
}

@media screen and (max-width: 860px) {
  .projetos__filters__button {
    font-size: 1.6rem;
  }
}

.projetos__grid {
  grid-template-columns: repeat(6, 1fr);
  row-gap: 4rem;
  -moz-column-gap: 1.6rem;
  column-gap: 1.6rem;
}

.projetos__grid> :nth-child(10n+6),
.projetos__grid> :nth-child(10n+7),
.projetos__grid> :nth-child(10n+1),
.projetos__grid> :nth-child(10n+2) {
  grid-column: span 3;
}

.projetos__grid> :nth-child(10n+6) img,
.projetos__grid> :nth-child(10n+7) img,
.projetos__grid> :nth-child(10n+1) img,
.projetos__grid> :nth-child(10n+2) img {
  aspect-ratio: 670/377;
}

.projetos__grid> :nth-child(10n+8),
.projetos__grid> :nth-child(10n+9),
.projetos__grid> :nth-child(10n+10),
.projetos__grid> :nth-child(10n+3),
.projetos__grid> :nth-child(10n+5),
.projetos__grid> :nth-child(10n+4) {
  grid-column: span 2;
}

.projetos__grid> :nth-child(10n+8) img,
.projetos__grid> :nth-child(10n+9) img,
.projetos__grid> :nth-child(10n+10) img,
.projetos__grid> :nth-child(10n+3) img,
.projetos__grid> :nth-child(10n+5) img,
.projetos__grid> :nth-child(10n+4) img {
  aspect-ratio: 1/1;
}

@media screen and (max-width: 860px) {
  .projetos__grid {
    display: flex;
    flex-wrap: wrap;
  }

  .projetos__grid img {
    aspect-ratio: 1/1 !important;
  }
}

.projetos__item {
  color: var(--text);
}

@media screen and (max-width: 860px) {
  .projetos__item {
    flex: 1 1 40%;
  }
}

@media screen and (max-width: 450px) {
  .projetos__item {
    flex: 1 1 100%;
  }
}

.projetos__item__thumb {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  margin-bottom: 1rem;
}

.projetos__item__tag {
  font-size: 1.4rem;
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

.projetos__item__tag:empty {
  display: none;
}

.projetos__item__title {
  font-size: 3.6rem;
  margin: 0;
}

.projetos__vertodos {
  text-align: center;
  text-decoration: underline;
  font-weight: 500;
  font-size: 3.6rem;
  display: table;
  margin: 5rem auto 0;
  color: var(--text);
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.projeto-detalhe {
  background-color: var(--cinza);
  padding: 5rem 0 2rem;
}

.projeto-detalhe section:last-child {
  margin-bottom: 0;
}

.projeto {
  background-color: var(--cinza);
  margin: 5rem 0;
}

.projeto .projetos__item__title {
  font-size: 6.4rem;
  max-width: 67rem;
  line-height: 1em;
  margin-top: 1rem;
}

.projeto .projetos__item__tag {
  margin-bottom: 1rem;
  font-weight: 600;
}

.projeto__top {
  margin-bottom: 4rem;
  padding-top: 6rem;
}

@media screen and (max-width: 860px) {
  .projeto__top {
    margin-bottom: 1rem;
  }
}

.projeto__top__right {
  min-width: 25rem;
}

@media screen and (max-width: 860px) {
  .projeto__top__right {
    min-width: initial;
    margin-top: 5rem;
  }
}

.projeto__ano {
  font-weight: 600;
  font-size: 2rem;
}

.projeto__image {
  width: 100%;
  height: auto;
  display: block;
}

.conteudo__text iframe {
  width: 100%;
  aspect-ratio: 16/9;
  height: auto;
  display: block;
}

.titulo-texto__colunado__title {
  width: calc(50% - 1.6rem);
  line-height: 1em;
  font-size: 3.6rem;
}

@media screen and (max-width: 860px) {
  .titulo-texto__colunado__title {
    width: 100%;
  }
}

.titulo-texto__colunado__text {
  width: calc(50% - 1.6rem);
  margin: 0 0 0 auto;
}

@media screen and (max-width: 860px) {
  .titulo-texto__colunado__text {
    width: 100%;
  }
}

.titulo-texto__colunado--esquerda .titulo-texto__colunado__text {
  margin: 0;
}

.mosaico__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.mosaico__grid figure {
  flex: 1 1 calc(50% - 0.5rem);
}

@media screen and (max-width: 860px) {
  .mosaico__grid figure {
    flex: 1 1 100% !important;
  }
}

.mosaico__grid img {
  aspect-ratio: 670/377;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.mosaico__grid video {
  aspect-ratio: 670/377;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.mosaico__grid iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

.mosaico--3 .mosaico__grid figure {
  flex: 1 1 calc(33.3333% - 1rem);
}

.mosaico--4 .mosaico__grid figure {
  flex: 1 1 calc(25% - 1rem);
}

/* Reduz margem entre blocos de imagem consecutivos */
.my-md+.my-md,
.my-md+.mosaico {
  margin-top: 1rem;
  margin-bottom: 0;
}

.mosaico+.my-md,
.mosaico+.mosaico {
  margin-top: 1rem;
}

/* Margem padrão para blocos de texto e imagem */
.titulo-texto__colunado {
  margin-bottom: 1rem;
}

.mosaico {
  margin-bottom: 1rem;
}

.mb-md {
  margin-bottom: var(--space-md) !important;
}

.my-md-full {
  margin: var(--space-md) 0 !important;
}

.ficha-tecnica {
  margin-top: 5rem;
  padding-top: 5rem;
  border-top: solid 1px var(--verde-escuro);
}

.projeto-nav {
  margin: 5rem 0 0;
}

.projeto-nav a {
  font-size: 2.4rem;
  text-decoration: underline;
}

@media screen and (max-width: 860px) {
  .projeto-nav a {
    font-size: 1.8rem;
  }
}

.hero--quemsomos {
  background-color: var(--verde-escuro);
  color: white;
  padding-top: 15rem;
  margin-top: 0;
  border-bottom: solid 1px white;
}

.hero--quemsomos .titulo-texto__colunado__title {
  font-size: 6.4rem;
  max-width: 50rem;
}

.hero--quemsomos+.parceiros {
  padding-top: 4rem;
}

.block-text {
  border: solid 1px white;
  border-left: 0;
  border-right: 0;
  background-color: var(--verde-escuro);
  color: white;
}

.block-text p {
  font-size: 3.4rem;
}

@media screen and (max-width: 860px) {
  .block-text p {
    font-size: 2.4rem;
  }
}

.fundador {
  padding: 5rem 0 10rem;
  color: white;
  background-color: var(--verde-escuro);
  border-bottom: solid 1px white;
}

.fundador__image {
  max-width: 55.3rem;
}

.fundador__image img {
  width: 100%;
  height: auto;
  display: block;
}

.fundador__content {
  position: relative;
}

.fundador__content::before {
  content: "";
  background: url("../images/ico-aspas.svg") no-repeat center/contain;
  width: 10.2rem;
  height: 8.6rem;
  position: absolute;
  left: -3rem;
  top: -6.7rem;
}

@media screen and (max-width: 860px) {
  .fundador__content::before {
    left: 0;
  }
}

.fundador__title {
  font-size: 2.4rem;
  margin: 1em 0 0;
}