.Sobre-Mim {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #010205;
    text-align: center;
    padding-left: 15%;
    padding-right: 15%;
    border-bottom: solid 2px var(--color-branca);
}

.Sobre-Mim-Titulo {
    color: #CCD6FF;
    text-shadow: solid 1px #2f3c63;
    font-size: 48px;
    padding-top: 90px;
    padding-bottom: 60px;
}

.Texto-Div {
    position: relative;
    height: 200px;
    overflow: hidden;
    transition: height 0.5s ease;
}

.Texto-Div::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(transparent, #010205);
}

#text {
    text-align: justify;
    color: var(--color-branca);
    font-size: 23px;
    letter-spacing: 1.2px;
}

#toggle-button {
    width: 100%;
    border: none;
    background-color: #010205;
    color: black;
    border-radius: 4px;
    font-size: 28px;
    cursor: pointer;
}

.Sobre-Mim.active .Texto-Div {
    height: 950px;
}

.Sobre-Mim.active .Texto-Div::before {
    visibility: hidden;
}

.video-pitch {
    width: 100%;
    height: 600px;
    padding: 50px, 0px;
}

iframe {
    border-radius: 10px;
}

@media screen and (max-width: 1440px) {
    .Sobre-Mim {
        padding-left: 10%;
        padding-right: 10%;
    }

    .Sobre-Mim.active .Texto-Div {
        height: 1100px;
    }

    .Sobre-Mim-Titulo {
        font-size: 43px;
        padding-top: 70px;
        padding-bottom: 53px;
    }

    .Texto-Div {
        height: 200px;
        overflow: hidden;
        transition: height 0.5s ease;
    }

    #text {
        font-size: 19px;
    }

    .video-pitch {
        height: 500px;
    }

    iframe {
        border-radius: 10px;
        width: 100%;
        height: 453px;
    }
}

@media screen and (max-width: 1020px) {
    .Sobre-Mim.active .Texto-Div {
        height: 2100px;
    }

    .Sobre-Mim-Titulo {
        font-size: 41px;
        padding-top: 65px;
        padding-bottom: 50px;
    }

    #text {
        font-size: 17px;
    }

    .video-pitch {
        height: 250px;
    }

    iframe {
        width: 100%;
        height: 218px;
    }
}