@media screen and (min-width: 800px){
    header{
        display: flex;
        justify-content: space-around;
        align-items: center;
        margin-top: 1rem;
        position: sticky;
        top: 0;
        background-color: var(--cor-secundaria);
        z-index: 1000;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    .service, .about, .plan-container{
        scroll-margin-top: 4rem;
    }
    .main-logo{
        margin: 0;
    }
    .main-btn{
        width: 40rem;
        flex-direction: row;
        justify-content: center;
    }
    .main-btn button{
        width: 300px;
    }
    .main-container{
        flex-wrap: nowrap;
        width: 40rem;
        gap: 2rem;
    }
    .card-content{
        display: flex;
        flex-direction: column;
        flex: 1;
    }
    .card-content p{
        font-size: 0.8rem;
    }
    .card-content img{
        max-width: 100%;
        object-fit: contain;
        align-self: auto;
    }
    .about-us{
        width: 40rem;
    }
    .AU-img-btn{
        flex-direction: row;
        align-items: center;
    }
    .client-container{
        max-width: 40rem;
    }
    .plan-container{
        padding-bottom: 3rem;
    }
    .pricing{
        flex-direction: row;
        margin: 0 auto;
        align-items: stretch;
        max-width: 46.875rem;
    }
    .pricing-plan__price{
        font-size: 2rem;
    }
    .pricing-plan:last-child{
        margin-bottom: 0;
    }
    .main-footer{
        max-width: 100%;
        width: 50rem;
        margin: 0;
        padding: 0 2rem 2rem 2rem;
    }
    .footer-links-container{
        flex-direction: row;
        justify-content: space-around;
        margin: 0 auto;
        max-width: 100%;
        gap: 8rem;
    }
    .footer-links-content{
        width: 100%;
    }
}

@media screen and (min-width: 1280px){
    .main-content{
        padding: 2rem;
    }
    .about{
        display: flex;
        max-width: 100%;
    }
    .about-us{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin-top: 0;
        gap: 8rem;
    }
    .about-us p{
        width: 30rem;
        justify-content: right;
        /* border-bottom: 2px solid rgba(0, 0, 0, 0.473);
        border-left: 2px solid rgba(0, 0, 0, 0.473); */
        padding: 2rem;
        position: relative;
        border: none;
        text-align: justify;
    }
    .about-us p::after{
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 8%;
        height: 2px;
        background-color: rgba(0, 0, 0, 0.473);
    }
    .about-us p::before{
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 2px;
        height: 10%;
        background-color: rgba(0, 0, 0, 0.473);
    }
    .AU-img-btn{
        display: flex;
        flex-direction: column;
        width: 20rem;
        align-items: center;
        gap: 2rem;
    }
    .img-border-box {
        position: relative;
        display: inline-block;
    }
    .img-border-box img {
        display: block;
        max-width: 100%;
        width: 30rem;
        padding: 1.8rem;
    }
    .img-border-box::before {
        content: "";
        position: absolute;
        top: -10px; 
        right: 0;
        width: 10%; 
        height: 2px;
        background-color: rgba(0, 0, 0, 0.473);
    }
    .img-border-box::after {
        content: "";
        position: absolute;
        top: -10px;
        right: 0;
        width: 2px;
        height: 10%;
        background-color: rgba(0, 0, 0, 0.473);
    }
    .AU-img-btn img{
        position: relative;
        border: none;
        margin-top: 0;
    }
    .AU-img-btn img::after{
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 20%;
        height: 2px;
        background-color: rgba(0, 0, 0, 0.473);
    }
    .AU-img-btn img::before{
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 2px;
        height: 30%;
        background-color: rgba(0, 0, 0, 0.473);
    }
    .main-footer{
        width: 80rem;
        flex-direction: row;
        padding-top: 2rem;
    }
}

@media screen and (min-width: 1366px){
    .main-content{
        height: 40vh;
    }
    .service{
        height: 50vh;
    }
    .main-footer{
        min-width: 100%;
        justify-content: space-around;

    }
}