.container-emphasis{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    margin: 0 auto;
}

.divider-emphasis{
    border: none; /* Remove o estilo de borda padrão */
    height: 1.5px; /* Define a espessura */
    background-color: #8D141A; /* Define a cor */
    width: 85vw;
}

.divider-emphasis-top{
    margin-bottom: 30px;
}

.divider-emphasis-bottom{
    margin-top: 27px;
}

.img-emphasis{
    max-width: 85vw;
    margin: 0 auto;
}

.img-emphasis-mobile{
    display: none;
}

.img-emphasis-tablet{
    display: none;
}

.img-emphasis-laptop{
    display: none;
}

/* Media Queries */
@media (max-width: 1440px) {

}

@media (min-width: 769px) and (max-width: 1024px) {
    .img-emphasis-laptop{
        display:block;
        width: 85vw;
    }

    .img-emphasis{
        display:none;
    }

    .container-emphasis{
        padding-top: 50px;
    }
}

@media (min-width: 427px) and (max-width: 768px) {
    .img-emphasis-tablet{
        display:block;
        width: 85vw;
    }

    .img-emphasis{
        display:none;
    }
}

@media (max-width: 426px) {
    .container-emphasis{
        padding-top: 50px;
    }

    .img-emphasis{
        display: none;
    }

    
    .img-emphasis-mobile{
        display:block;
        max-width: 85vw;
    }

    .img-emphasis{
        display:none;
    }

}
