@media (min-width: 1200px) {
    .img-marca-p{
        width: 50%;
    }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
    .img-marca-p{
        width: 60%;
    }
}

@media (max-width: 991px) {
    .img-marca-p{
        width: 95%;
    }
}

.lite-youtube-fallback {
	aspect-ratio: 16 / 9; /* matches YouTube player */
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 1em;
	padding: 1em;
	background-color: #000;
	color: #fff;
	text-decoration: none;
}

.lite-youtube-fallback::before {
	display: block;
	content: '';
	border: solid transparent;
	border-width: 2em 0 2em 3em;
	border-left-color: red;
}

.lite-youtube-fallback:hover::before {
	border-left-color: #fff;
}

.lite-youtube-fallback:focus {
	outline: 2px solid red;
}