* {
    margin: 0;
    padding: 0;
}

.home {
    display: flex;
    min-height: 100vh;
    padding-bottom: 30em;
}

.principal, .opcao-secundaria {
    flex: 1;
    position: relative;
}
.home > * {
    z-index: 1;
}
.fundo {
    opacity: 0.8;
}
.principal .fundo, .opcao-secundaria:hover .fundo {
    opacity: 0.6;
}
.home .fundo {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    z-index: -100;
}

.principal div:first-child ul {
    padding: 20px;
    align-content: center;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.principal, .opcao-secundaria:hover {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.principal, .secundario, .opcoes-secundarias, .opcao-secundaria {
    flex: 1;
}

.opcoes-secundarias {
    display: flex;
}

.secundario {
    display: flex;
    flex-direction: column-reverse;
}

.opcao-secundaria {
    min-height: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
}

.opcao-secundaria h1 {
    color: #fff !important;
}

.opcao-secundaria hr {
    width: 50%;
}

.texto-principal {
    background-color: hsl(0deg, 0%, 0%);
    color: hsl(0deg, 0%, 100%);
    padding: 50px;
}

.texto-principal h1 {
    color: #b81d20;
    font-weight: bold;
    font-size: 25px;
}

.texto-principal p {
    margin-bottom: 10px;
    text-align: justify;
}

.texto-principal div:last-child {
    display: flex;
    flex-direction: row;
}

.segundaLinha {
    display: flex;
    flex-direction: row;
    position: absolute;
    right: 0;
}

.segundaLinha i {
    padding: 15px;
    font-size: 25px;
}

.dropMenu ul {
    display: none;
}

@media screen and (max-width: 800px) {
    .home {
        flex-direction: column;
        padding-bottom: 40em;
    }
    .principal, .secundario {
        min-height: 100vh;
    }
    .secundario {
        flex-direction: column-reverse;
    }
}