.section.video_inicio {
  position: relative;
  width: 100%;
  height: 100vh;
  max-height: 731px;
  overflow: hidden;
}

.section.video_inicio .video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.section.video_inicio .video iframe {
  position: absolute;
  top: 0;
  left: 0;
  border: none;
  pointer-events: none;
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

/* Ajustes para proporção da tela */
@media (min-aspect-ratio: 16/9) {
  .section.video_inicio .video iframe {
    height: 300%;
    top: -100%;
  }
}

@media (max-aspect-ratio: 16/9) {
  .section.video_inicio .video iframe {
    width: 300%;
    left: -100%;
  }
}

/* Conteúdo por cima */
.section.video_inicio .wrapper {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 2rem;
}

        .video::after {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          content: '';
          background: linear-gradient(180deg, rgba(104, 86, 51, 0.90) 3.46%, rgba(104, 86, 51, 0.40) 94.01%);          
          opacity: 1;
        }


/* SECTION DE ATÉ 3 CONTEÚDOS */
section.section.blocos-inicio {
    background-color: var(--bege_claro);
}

    section.section.blocos-inicio .content {
        margin-top: -170px;
    }

        .blocos-infos .wrapper {
            flex-direction: row;
            flex-wrap: nowrap;
            align-content: stretch;
            gap: 60px;
            align-items: stretch;
        }

            .blocos-infos .wrapper  .bloco_infos {
                width: 100%;
                text-align: center;
                padding: 40px;
                background: var(--branco, #FFF);
                box-shadow: 0px 0px 34px 0px rgba(0, 0, 0, 0.11);
            }