.info{
    background-color: var(--cor-background-2);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
}

.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;
}

.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: 70%;
}

.info-p{
    color: #fff;
    font-size: 19px;
}