@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    padding: 0;
    margin: 0;
}

#video_promocional {
    width: 100%;
    height: 100vh;
    background-color: #6eb1a7;
    border: 5px solid green;
}

.video_passo {
    height: auto;
    border-radius: 20px;
    border: 2px solid green;
    padding: 2px;
}

/* 
#barra {
    border: 1px solid black;
    background-color: yellow;
    width: 640px;
    height: 20px;
    padding: 0px;
}

#barra_progresso {
    background-color: green;
    height: 20px;
    width: 0px;
} */

section {
    display: flex;
    justify-content: space-between;
}

.line {
    position: relative;
}

.line::after {
    content: "";
    position: absolute;
    background-color: green;
    right: 50%;
    width: 2px;
    height: 100%;
    display: flex;
}

.image {
    width: 50%;
}

.image video {
    width: 80%;
}

.left {
    display: flex;
    align-items: center;
}

.left::after {
    content: "";
    background-color: green;
    width: 100%;
    height: 2px;
}

.left video {
    margin-left: 10%;
    box-shadow: -5px 5px 5px #b1b1b1;
}

.right {
    display: flex;
    align-items: center;
}

.right::before {
    content: "";
    background-color: green;
    width: 100%;
    height: 2px;
}

.right video {
    margin-right: 10%;
    box-shadow: 5px 5px 5px #b1b1b1;
}

.description {
    width: 50%;
    font-family: "Open Sans", sans-serif;
}


.description h2 {
    color: #484a46;
    font-weight: 700;
    font-size: 2rem;
    line-height: 2.5rem;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 20px;
    padding: 0 50px;
}

.content {
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    align-items: center;
    gap: 10px;
}

.content .icon {
    width: 35px !important;
    height: 35px !important;
    border-radius: 50%;
    background-color: green;
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    line-height: 2.25rem;
    text-align: center;
}

.content .attention {
    background-color: #FFDA1C;
    color: #4B4B4B;
    border: 1px solid green;
}

.content p {
    color: #484a46;
    box-shadow: none;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.625rem;
    letter-spacing: -0.4px;
    text-align: left;
    width: 90%;
}

.desenvolvedores {
    display: flex;
    position: relative;
    width: 100%;
    gap: 50px;
    align-items: center;
    justify-content: center;
    height: 80px;
} 

.desenvolvedores::after {
    content: "";
    position: absolute;
    top: 0;
    width: 110px;
    height: 2px;
    background-color: green;
}

.desenvolvedor {
    display: flex;
    align-items: flex-end;
    padding: 10px;
    position: relative;
    height: 100%;
}

.desenvolvedor::before {
    content: "";
    position: absolute;
    right: 50%;
    top: 0;
    width: 2px;
    height: calc(100% - 30px);
    background-color: green;
}

.desenvolvedor a {
    text-decoration: none;
    color: #000;
    transition: 1s;
}

.desenvolvedor a:hover {
    color: green;
}

.linha {
    background-color: green;
    width: 2px;
    height: 10px;
}