#sobre {
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

#boxes_sobre {
    width: 45%;

    display: flex;
    flex-direction: column;
    gap: 25px;
}

.box {
    width: 100%;
    padding: 15px;

    display: flex;
    flex-direction: column;
    gap: 10px;

    border-radius: 10px;
    border: 1px solid #1feba45e;
    backdrop-filter: blur(10px);
}

.box p {
    text-align: justify;
    font-size: .94rem;

}

#txt_sobre {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#txt_sobre p {
    font-size: .94rem;
}

#txt_sobre button {
    width: 30%;
    margin-top: 20px;
}

#txt_sobre span {
    font-size: .7155rem;
    letter-spacing: 3px;
}

#txt_sobre h2 {
    font-size: 2rem;
}

.box a {
    color: white;
    text-decoration: none;
    font-size: .8rem;
    transition: color .5s ease;
}

.box a:hover {
    color: var(--color-primary-6);
}

.box a::after {
    content: "";
    background-image: url(assets/setadireita.png);
    width: 20px;
    height: 20px;
    background-size: 20px 20px;
    display: inline-block;
    position: relative;
    bottom: -6px;
    left: 5px;
}

.btn {
    width: 50%;
}


@media (min-width: 769px) and (max-width: 1024px) {    
    #sobre {
        justify-content: space-evenly;
        gap: 20px;
    }

    #boxes_sobre {
        width: 50%;
    }

    .btn {
        width: 60%;
        
    }
}

@media (min-width: 481px) and (max-width: 768px) {    
    #sobre {
        flex-direction: column-reverse;
    }

    #boxes_sobre {
        width: 90%;
        text-align: center;
    }

    .box p {
        text-align: center;
        font-size: .94rem;
    }

    #txt_sobre {
        width: 100%;
        text-align: center;
    }

    #txt_sobre p {
        width: 95%;
        font-size: .94rem;
        margin: 0 auto;
    }

    .btn {
        width: 60%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 10px auto 20px;
    }
}

@media (max-width: 480px) {
    #sobre {
        flex-direction: column-reverse;
    }

    #boxes_sobre {
        width: 100%;
        text-align: center;
    }

    .box p {
        text-align: center;
        font-size: .94rem;
    }

    #txt_sobre {
        width: 100%;
        text-align: center;
    }

    #txt_sobre p {
        font-size: .94rem;
    }

    .btn {
        width: 85%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 10px auto 20px;
    }
}