.after-movie-container {
    display: grid;
}

.after-movie-image {
    grid-row: 1 / 1;
    grid-column: 1 / 1;
}

.after-movie-wrapper {
    grid-row: 1 / 1;
    grid-column: 1 / 1;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;

    width: 75%;
    gap: 2.5rem;
    margin: 5rem auto 3rem auto;
}

.after-movie-title {
    font-size: 2rem;
    color: white;
    text-align: center;
    color: var(--color-amarelo-texto);
}

.title-amarelo-white {
    color: transparent;
    background-clip: text;
    background-image: linear-gradient(to right, rgba(250, 246, 26, 1) 0%, rgba(255, 255, 153, 1) 37%, rgba(230, 230, 230, 1) 53%, rgba(250, 246, 26, 1));
}

.after-movie-iframe {
    width: 100%;
    height: 100%;
    display: flex;
    position: relative;
    border-radius: 3rem;
}

.after-movie-iframe::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 3rem;
    padding: 2px;
    background: linear-gradient(135deg, 
        rgba(150, 150, 150, 0.4) 0%, 
        rgba(200, 180, 120, 0.6) 50%,
        #c9a961 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.after-movie-iframe iframe {
    width: 100%;
    height: 100%;
    border-radius: 3rem;
    aspect-ratio: 16 / 9;
    min-height: 400px;
}

.break-mobile {
    display: none;
}

@media (max-width: 1024px) {
    .after-movie-wrapper {
        width: 85%;
        gap: 2rem;
        margin: 3rem auto 2rem auto;
    }

    .after-movie-title {
        font-size: 1.75rem;
    }

    .after-movie-iframe {
        border-radius: 2rem;
    }

    .after-movie-iframe iframe {
        border-radius: 2rem;
        min-height: 350px;
    }
}

@media (max-width: 600px) {
    .after-movie-wrapper {
        width: 90%;
        gap: 1.5rem;
        margin: 2rem auto 1.5rem auto;
    }

    .after-movie-title {
        font-size: 1.25rem;
        line-height: 1.4;
    }

    .after-movie-iframe {
        border-radius: 1.5rem;
        border: 1px solid white;
    }

    .after-movie-iframe iframe {
        border-radius: 1.5rem;
        min-height: 250px;
    }
}

@media (max-width: 425px) {
    .break-mobile {
        display: block;
    }
}