.info {
    background-color: var(--cor-background-2);
    background-image: url('/src/images/elefantinhos.png');
    background-size: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 50px;
    padding-bottom: 50px;
}

.info::before {
    content: "";
    position: relative;
    inset: 0;
    /* ocupa todo o espaço do container */
    background-color: rgba(0, 0, 0, 0.4);
    /* cor + transparência */
    z-index: 0;
}

.info-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70%;
    gap: 60px;
}

.info-content img {
    width: 100%;
}

.text-left {
    width: 50%;
}

.text-left p {
    color: #fff;
    font-size: 19px;
    width: 50%;
}

.text-right {
    width: 50%;
}

.info-h2 {
    color: #fff;
    font-size: 40px;
    width: 100%;
}

.info-p {
    color: #fff;
    font-size: 19px;
}


@media (max-width: 1024px) {
    .info {
        padding-top: 40px;
        padding-bottom: 40px;
        height: auto;
    }

    .info-content {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 80%;
        flex-direction: column;
        row-gap: 0px;
    }

    .info-h2 {
        color: #fff;
        font-size: 40px;
        width: 100%;
    }


    .text-left p {
        color: #fff;
        font-size: 19px;
        width: 100%;
    }

    .text-left {
        width: 100%;
    }

    .text-right {
        width: 100%;
    }

}