body {
    margin: 0;
    overflow-x: hidden;
}

.cinfos {
    width: 100VW;
    min-height: 80vh;
    background-color: #080043;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    padding: 2% 0;
    box-sizing: border-box;
}

.esquerda,
.direita {
    width: 100%;
    box-sizing: border-box;
}

.esquerda>div:hover,
.direita>div:hover {
    transform: scale(1.05);
}

.esquerda>div,
.direita>div {
    margin-bottom: 2%;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
    width: 95%;
}

.esquerda>div p,
.direita>div p {
    font-size: 2vh;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
    margin-left: 2%;
    color: white;
}

.im,
.im2 {
    height: auto;
    width: 10%;
    margin: 1.5% 2%;
}

.im>img,
.im2>img {
    height: auto;
    max-height: 6vh;
    filter: invert(1);
}

@media screen and (min-width: 768px) {
    .cinfos {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        padding: 0;
    }

    .esquerda,
    .direita {
        width: 50%;
        padding: 0;
    }

    .esquerda>div,
    .direita>div {
        width: 90%;
        margin: 1% auto;
    }

    .verMais {
        display: none;
        /* Esconde em telas maiores */
    }
}

@media screen and (max-width: 767px) {
    .direita {
        display: none;
    }

    .verMais {
        display: block;
        /* Exibe em telas menores que 768px */
        width: 100%;
        cursor: pointer;
        font-size: large;
        padding: 5px 0px 5px 0px;
        border-radius: 0;
        border: 0;
        border-bottom:  20px solid #040023;
    }
}