section.boas-vindas {
    background-color: var(--bege);
    padding-bottom: 100px;
}
section.boas-vindas h2{
    text-align: left;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 26px;
}
section.boas-vindas .wrapper{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    row-gap: 40px;
    gap: 20px
}
section.boas-vindas .text {
    flex-basis: 68%;
}
section.boas-vindas .text p{
    font-weight: 400;
    font-size: 16.67px;
    margin-bottom: 15px;
}
section.boas-vindas .text .right{
    pointer-events: none;
    display: block;
    float: right;
}
section.boas-vindas .text .right p{
    margin-bottom: 10px;
}
section.boas-vindas .wrapper iframe{
    float: right;
    flex-basis: 25%;
    margin: 0 auto;
    width: 600px;
    height: 500px;
    object-fit: cover;
    position: relative;
    border-radius: 20px;
    display: inline-flex;
    outline: none;
    border: 2px solid var(--azul);
}

@media(max-width: 468px) {
    section.boas-vindas .text,
    section.boas-vindas .wrapper iframe{
        flex-basis: 100%;
    }
    section.boas-vindas .wrapper iframe{
        width: 100%;
        height: 440px;
    }
}