.principal {
    width: 100%;
    max-width: var(--max-width);

    padding: var(--padding);
}

.principal-container {
    padding: 32px;

    display: flex;

    justify-content: space-between;
    align-items: start;

    border-radius: 10px;

    box-shadow: var(--box-shadow);

    background-color: var(--gray-f1);

    overflow: hidden;
}

.principal-side {
    width: 48%;

    display: flex;
    flex-direction: column;

    gap: 8px;
}

.principal-side img {
    width: 50%;

    margin: 0 auto;
}

@media screen and (max-width: 767px) {
    .principal-container {
        flex-direction: column;
    }

    .principal-side {
        width: 100%;
    }
}

.youtube-image-stretch img {
    width: 102% !important;
    height: 153% !important;

    top: -26% !important;
    left: -1% !important;
}