nav {
    position: fixed !important;
    top: 0;
    left: 0;
    background: rgba(58, 0, 13, 0.90)!important;
}
main {
    margin-top: 9vh;
    color: rgb(70, 70, 70);
}
.passo-a-passo {
    background: rgb(240, 240, 240);
    padding-top: 1.5rem;
}
.steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    padding: 1.5rem;
}
.step:first-child{
    grid-row: span 3;
}
.step:nth-child(2){
    grid-row: span 2;
}
h1 {
    font-weight: 400;
    font-size: 1.5rem;
    text-transform: uppercase;
    text-align: center;
    color: #fd41a2;
    padding: 2rem 0;
}
h3 {
    color: #fd41a2;
    margin-left: 2rem;
}
.step {
    width: 100%;
}
.step > div {
    background-color: white;
    border-radius: 10px;
    margin: .5rem 2rem;
    padding: 1rem;
}
.step > div > h4 {
    margin-bottom: .5rem;
}
.step > div > p {
    margin-left: 2rem;
}
.step > div img {
    margin: .5rem 0;
}
.step span {
    color: #fd41a2;
    font-weight: 500;
}

table {
    font-family: arial, sans-serif;
    border-collapse: collapse;
    margin: 1rem 4rem 1rem;
}

td, th {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
}
tr:nth-child(even) {
    background-color: #dddddd;
}

.step > div > img {
    margin-left: 4rem;
    width: 80%;
    image-rendering: optimizeQuality;
}

.playerWrapper{
    position: relative;
    overflow: hidden;
    width: 60%;
    padding-top: 33.75%;
}
.playerWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
.video{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 2rem;
}
.video-controls {
    margin: 0 auto;
    width: 30%;
}
.video-controls h3 {
    text-align: left;
    margin: .5rem;
}
.skip-control {
    margin: .5rem;
    border-radius: 5px;
    border: 1px solid #ddd;

    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
}
.skip-control button{
    background: none;
    border: none;
    color: #fd41a2;
    font-weight: 600;
    border-right: 1px solid #ddd;
    padding: .5rem;
    cursor: pointer;
    background-color: #fff;
    border-radius: 5px 0 0 5px;
}
.skip-control p {
    padding: .5rem;
}
.skipToBtn {
    cursor: pointer;
    transition: all .3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.25), 0 5px 10px rgba(0,0,0,0.12);

}
.skipToBtn:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.4), 0 5px 10px rgba(0,0,0,0.32);

}

@media screen and (max-width:1024px) {
    .video {
        flex-direction: column;
    }
    .playerWrapper{
        width: 100%;
        padding-top: 56.25%;
    }
    .video-controls {
        width: 100%;
        padding: 2rem;
    }
    .steps {
        display: flex;
        flex-direction: column;
        overflow-x: hidden;
    }
    .step > div > p {
        margin-left: 1rem;
    }
    .step table {
        margin: 1rem;
        width: 100%;
        font-size: .7rem;
    }
}