.midia {
    position: relative;
    background-color: #EAE4DF;
    text-align: center;
    justify-content: flex-start;
    flex-direction: column;
}
.midia .midia-title {
    background: linear-gradient(to right, rgb(136, 103, 67), rgb(183, 153, 104));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 10vh;
    font-size: 1.5rem;
    width: 25vw;
    border-bottom: 2px solid #6E6259;
    margin-bottom: 1rem;
}
.midia .content-margin {
    z-index: 2;
    height: 80%;
    width: 70%;
    align-items: flex-start;
    margin-top: 2rem;
    flex-direction: row;
    flex-wrap: wrap;
}
.midia .content-margin .midia-bg{
    /* height: 60%; */
    max-width: min(30%, 40%);
    position: relative;
    transition: all 0.15s ease-in;
}
.midia .content-margin .midia-bg:hover{
    transform: scale(1.01);
    filter: drop-shadow(0px 5px 20px rgba(0, 0, 0, 0.35));
}
.midia .content-margin .midia-bg::before  {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.midia .content-margin .midia-bg .legenda  {
    position: absolute;
    bottom: 0;
    width: 100%;
    margin-bottom: 0px;
    z-index: 99;
    opacity: 0;
    text-decoration: none;
    color: black;
    font-family: "Gotham";
    font-weight: 300;
    text-transform: capitalize;
    transition: all ease-in-out 0.3s;
}
.midia .content-margin .midia-bg:hover .legenda  {
    margin-bottom: -25px;
    opacity: 1;
}


.midia .content-margin .midia-bg{
    margin-left: 1.5%;
    margin-right: 1.5%;
    margin-top: 2rem;
}

.midia .content-margin .midia-bg img{
    width: 100%;
    z-index: 2;
}
.midia .content-margin .midia-bg span{
    position: absolute;
    width: 90%;
    font-size: 1.5rem;
}
.midia .conheca-button{
    width: 35vw;
}
.links-midia{
    margin-top: 1rem;
    width: 70%;
    font-family: 'Millard';
    font-size: 1.5rem;
}
.links-midia a{
    text-decoration: underline;
    color: #6E6259;
}
svg{
    bottom: -79px;
    position: absolute;
    z-index: 2;
}
.lines-one{
    z-index: 2;
    width: 100%;
    height: auto;
    position: absolute;
    bottom: 60%;
    pointer-events: none;
}
.lines-two{
    z-index: 2;
    width: 100%;
    height: auto;
    position: absolute;
    bottom: 5%;
    pointer-events: none;
}
.footer .footer-content {
    margin-top: 10rem;
}

@media only screen and (max-width: 768px) {
    .midia .content-margin{
        flex-direction: column;
        height: auto;
        position: relative;
    }
    .midia .content-margin .midia-bg{
        width: 100%;
        max-width: 100%;
        margin: 2rem auto;
        position: relative;
    }
    .midia .midia-title {
        width: 70vw;
    }
    .midia .content-margin .midia-bg:first-child {
        margin-left: auto;
    }
    
    .midia .content-margin .midia-bg:last-child {
        margin-right: auto;
    }.midia .conheca-button {
        width: 90vw;
    }
    .links-midia{
        font-size: 1rem;
    }
    .midia .content-margin .midia-bg .legenda  {
        position: absolute;
        /* left: 0; */
        bottom: 0;
        width: 100%;
        margin-bottom: -25px;
        z-index: 99;
        opacity: 1;
        text-decoration: none;
        color: black;
        font-family: "Gotham";
        font-weight: 300;
        transition: none;
    }
}