#servicos {
    padding-top: 60px;
}

.servicos__secao {
    position: relative;

    width: calc(100% - 40px);
    padding: 20px;

    color: white;

    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.servicos__secao img {
    min-width: 150px;
    width: 30vw;
    max-width: 330px;
}


.servico-site {
    background: url("../img/background-internet.png") no-repeat;
    background-position: center;
    background-size: cover;
    flex-direction: row-reverse;
}

.servico-app {
    background: url("../img/background-android.png") no-repeat;
    background-position: center;
    background-size: cover;
    flex-direction: row;
}


.servicos__descricao {
    width: 95%;
    max-width: 530px;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.servicos__descricao h2 {
    font-family: var(--font-primary);
    font-size: 25px;
}

.servicos__descricao h3 {
    font-family: var(--font-secondary);
    font-size: 22px;
    font-weight: 500;
}

.servicos__descricao p {
    font-family: var(--font-secondary);
    font-size: 18px;
    padding-top: 10px;
}


.servicos__preco {
    width: 208px;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: start;
    padding-top: 10px;
}

.servicos__preco-title {
    padding-bottom: 0;

    text-align: start;
    width: 100%;
}

.servicos__preco-valor {
    padding-top: 0 !important;

    font-size: 40px !important;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .servicos__secao img {
        min-width: 130px;
        max-width: 200px;
    }

    .servicos__descricao h2 {
        font-size: 26px;
    }
    
    .servicos__descricao h3 {
        font-size: 20px;
    }
    
    .servicos__descricao p {
        font-size: 16px;
    }
}

@media screen and (max-width: 518px) {
    .servicos__secao {
        width: calc(100% - 10px);
        padding: 15px 5px;
    }
}

@media (max-width: 480px) {
    .servicos__descricao h2 {
        font-size: 22px;
    }
    
    .servicos__descricao h3 {
        font-size: 18px;
    }
}