body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #83868a;
}

.helpdesk-tutoriais {
	padding: 10px;
}

.helpdesk-header {
    background: #222;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    flex-wrap: wrap;
    gap: 10px;
}


.helpdesk-voltar {
    display: flex;
    align-items: center;
}

.helpdesk-voltar a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.helpdesk-voltar a:hover {
    color: #f8c810;
}

.helpdesk-voltar img {
    max-width: 180px;
    height: auto;
}

.helpdesk-voltar i {
    margin-right: 5px;
}

.btn-voltar {
    border: 1px solid #333;
    padding: 20px;
    border-radius: 10px;
}

.btn-voltar:hover {
    background: #333;
}


.flex-grow-1 h2{
    text-transform: uppercase;
    font-size: 1.1rem;
}

.video-container {
    position: relative;
    width: 100%;
    /* 16:9 Aspect Ratio */
    padding-bottom: 56.25%; /* (height / width) * 100 = (9 / 16) * 100 = 56.25% */
    /* For a 4:3 aspect ratio, use padding-bottom: 75%; (3 / 4) * 100 */
    height: 0; /* Important to collapse the height */
    overflow: hidden; /* Ensures no content overflows */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}