/* === MIDIA === */
.midia-pg-title {
    padding-top: calc(var(--header-height) + 1rem);
    padding-bottom: .8rem; /* Ou o valor desejado */
    background-color: rgba(224, 203, 184, 1);
  }

.midia-pg-title h1 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 2.5rem;
    color: var(--primary);
  }  

.lista-midias {
    padding: 4rem 0;  
}

.lista-midias .container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.midia-item {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.midia-item img {
    width: 50%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-light);
}

.video-container {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem; /* opcional */
  }
  
  .video-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
  }
  

@media (max-width: 768px) {

    .sobre-pg-content {
        flex-direction: column;
        gap: 2rem;
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    
    .sobre-pg-text p {
        font-size: 1.2rem;
    }

    .midia-item h2 {
        font-size: 1.8rem;
        line-height: 1.4;
    }

    .midia-item img {
        width: 100%;
        height: auto;
        border-radius: 8px;
        box-shadow: var(--shadow-light);
    }

}
