.main-about {
    background-size: cover;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    background-color: #ededed;
  }
  
  video {
    width: 100%;
    height: 100%;
    display: block;
  }
  
  .overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 18px;
    display: none; /* Só aparece quando mudar o som */
    pointer-events: none; /* Deixa o clique passar direto */
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
  }
  .overlay-text.show {
    display: block;
    opacity: 1;
  }

.main-about-grid{
    max-width: 1000px;
    margin-right: auto;
    margin-left: auto;
}


.main-about-grid .main-title{
    background: #182c20;
    font-size: 4rem;
    line-height: 1.2em;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    padding-right: 10px;
    padding-left: 10px;
    color: #FCFCFB;
}

.main-about-grid .main-title-var{
    background: #fcce01;
    font-size: 4rem;
    line-height: 1.2em;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    padding-right: 10px;
    padding-left: 10px;
    color: #182c20;
}


.main-about .btn {
    margin-top: 20px;
    background: #FCFCFB;
}

.about-page-grid {
    padding-top: 80px;
    padding-bottom: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 40px;
    align-items: center;
}

.about-page-grid p {
    margin-top: 20px;
}

.ambiental {
    background: #1b5630;
    padding-top: 100px;
    padding-bottom: 140px;
}

.ambiental-grid h3 {
    color: #FCFCFB;
    text-align: center;
    text-transform: uppercase;
}


.ambiental-grid p {
    color: #FCFCFB;
    font-size: 1.125rem;
    max-width: 1000px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
}

.ambiental-grid i, .ambiental-grid strong {
    color: #FCFCFB;
}

.ambiental-gallery-grid {
    display: flex;
    flex-wrap: wrap;
    grid-gap: 20px;
}

.ambiental-gallery-grid img{
    flex: 1;
    min-width: 240px;
}

.ambiental-gallery {
    position: relative;
    bottom: 80px;
    padding-bottom: 40px;
}

@media only screen and (max-width: 1000px) {
    .about-page-grid {
        grid-template-columns: 1fr;
    }
}